diff options
author | shennetsind <ind@henn.et> | 2013-02-03 13:10:26 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-02-03 13:10:26 -0200 |
commit | 5b378058f51019b4b0a07b89d9bf1c16add01281 (patch) | |
tree | a0efe0ec7d48bb22e31e43d7d52b2f9e9e1ba568 /src/map/clif.c | |
parent | d6d49c43b4f742c7aaffd0a102e6019c9adb7438 (diff) | |
download | hercules-5b378058f51019b4b0a07b89d9bf1c16add01281.tar.gz hercules-5b378058f51019b4b0a07b89d9bf1c16add01281.tar.bz2 hercules-5b378058f51019b4b0a07b89d9bf1c16add01281.tar.xz hercules-5b378058f51019b4b0a07b89d9bf1c16add01281.zip |
Fixed Bug #7048
Items are no longer unequipped when a card within them is blacklisted (e.g. item_unequip.txt), instead the card's effect is nullified.
http://hercules.ws/board/tracker/issue-7048-requestreport-regarding/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 3443c1ae3..e04941336 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -9358,6 +9358,7 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd) } map_iwall_get(sd); // Updates Walls Info on this Map to Client + status_calc_pc(sd, false);/* some conditions are map-dependent so we must recalculate */ sd->state.changemap = false; } |