diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-07 17:02:05 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-07 17:02:05 +0000 |
commit | 0ae3dcfe9127d512eb4f0ccec06837b586fa3bc2 (patch) | |
tree | 75de3c2fa9d34c286f88a5b7db869a2dba022b48 /src/map/status.c | |
parent | 91ab4e4c9ddaf78f81b867180f627fd52d453942 (diff) | |
download | hercules-0ae3dcfe9127d512eb4f0ccec06837b586fa3bc2.tar.gz hercules-0ae3dcfe9127d512eb4f0ccec06837b586fa3bc2.tar.bz2 hercules-0ae3dcfe9127d512eb4f0ccec06837b586fa3bc2.tar.xz hercules-0ae3dcfe9127d512eb4f0ccec06837b586fa3bc2.zip |
Fixed bug to lion howling/sc_fear status, super mega ultra ubber plus thanks to the awesome malufett
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16238 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c index 8b10b2711..5c4f4cdd7 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -964,7 +964,6 @@ void initChangeTables(void) { StatusChangeStateTable[SC_MAGNETICFIELD] |= SCS_NOMOVE; StatusChangeStateTable[SC__MANHOLE] |= SCS_NOMOVE; StatusChangeStateTable[SC_VACUUM_EXTREME] |= SCS_NOMOVE; - StatusChangeStateTable[SC_FEAR] |= SCS_NOMOVE|SCS_NOMOVECOND; StatusChangeStateTable[SC_CURSEDCIRCLE_ATKER] |= SCS_NOMOVE; StatusChangeStateTable[SC_CURSEDCIRCLE_TARGET] |= SCS_NOMOVE; @@ -3423,7 +3422,6 @@ void status_calc_state( struct block_list *bl, struct status_change *sc, enum sc || (sc->data[SC_GRAVITATION] && sc->data[SC_GRAVITATION]->val3 == BCT_SELF) || (sc->data[SC_CLOAKING] && //Need wall at level 1-2 sc->data[SC_CLOAKING]->val1 < 3 && !(sc->data[SC_CLOAKING]->val4&1)) - || (sc->data[SC_FEAR] && sc->data[SC_FEAR]->val2 > 0) ) { sc->cant.move += ( start ? 1 : -1 ); } |