diff options
author | shennetsind <ind@henn.et> | 2013-09-09 15:48:07 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-09-09 15:48:07 -0300 |
commit | 0555708604b5609f6827d3eaa820d7e49aabd03a (patch) | |
tree | d3acc8a2f67bcccf204079d829a44808facfed06 | |
parent | eb530677e51ebda4340c147d11d7d9ef2fb9fe1f (diff) | |
download | hercules-0555708604b5609f6827d3eaa820d7e49aabd03a.tar.gz hercules-0555708604b5609f6827d3eaa820d7e49aabd03a.tar.bz2 hercules-0555708604b5609f6827d3eaa820d7e49aabd03a.tar.xz hercules-0555708604b5609f6827d3eaa820d7e49aabd03a.zip |
Fixed Bug #7613
Fixed issue with wedding status type moving speed being delayed to be applied/removed.
Special Thanks to bgamez23
http://hercules.ws/board/tracker/issue-7613-walking-speed-bug/
Signed-off-by: shennetsind <ind@henn.et>
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index f50a7422f..0a29a5d2f 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -1021,6 +1021,8 @@ void initChangeTables(void) { StatusChangeFlagTable[SC_REBOUND] |= SCB_SPEED|SCB_REGEN; StatusChangeFlagTable[SC_ALL_RIDING] = SCB_SPEED; + StatusChangeFlagTable[SC_WEDDING] = SCB_SPEED; + /* StatusDisplayType Table [Ind/Hercules] */ StatusDisplayType[SC_ALL_RIDING] = true; |