diff options
author | shennetsind <ind@henn.et> | 2013-10-24 04:49:48 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-10-24 04:49:48 -0200 |
commit | 065071b8032997d32c02ae7834c81566f027532e (patch) | |
tree | ae245cebd3bc75382dc749366d5f8fc3413179f5 /src/map | |
parent | 1904b2d3fb65bb96ef79b642bbe47cba5d10c19e (diff) | |
download | hercules-065071b8032997d32c02ae7834c81566f027532e.tar.gz hercules-065071b8032997d32c02ae7834c81566f027532e.tar.bz2 hercules-065071b8032997d32c02ae7834c81566f027532e.tar.xz hercules-065071b8032997d32c02ae7834c81566f027532e.zip |
Fixed Bug #7754
Fixed Field Manuals not display the proper boost percentage on the client.
http://hercules.ws/board/tracker/issue-7754-field-manuals-issue/
Thanks to Frost
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map')
-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 68a87b27a..4c40b1a2f 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -8771,6 +8771,8 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val case SC_WATER_BARRIER: val_flag |= 1|2|4; break; + case SC_CASH_PLUSEXP: + case SC_CASH_PLUSONLYJOBEXP: case SC_MONSTER_TRANSFORM: val_flag |= 1; break; |