diff options
author | Haru <haru@dotalux.com> | 2015-01-28 01:27:59 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-01-28 01:27:59 +0100 |
commit | 3a5b0c03e46158e1edd6ec88dfcace45e22c7a91 (patch) | |
tree | 70a9a6131588735298c776191b271d23f2bc9869 /src/map/clif.c | |
parent | 16157a6173bf116026d6d3be11c7f9e1a35e8b9a (diff) | |
download | hercules-3a5b0c03e46158e1edd6ec88dfcace45e22c7a91.tar.gz hercules-3a5b0c03e46158e1edd6ec88dfcace45e22c7a91.tar.bz2 hercules-3a5b0c03e46158e1edd6ec88dfcace45e22c7a91.tar.xz hercules-3a5b0c03e46158e1edd6ec88dfcace45e22c7a91.zip |
Follow-up to e778f4f5f1b6a08adee5e7e908a44c38cd29bd12
- Fixed some issues that prevented spirit charms from showing up
- Special thanks to Michieru
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 269b72ae1..be56f06cd 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -3999,7 +3999,7 @@ void clif_getareachar_pc(struct map_session_data* sd,struct map_session_data* ds if(dstsd->spiritball > 0) clif->spiritball_single(sd->fd, dstsd); - if (sd->charm_type != CHARM_TYPE_NONE && sd->charm_count > 0) + if (dstsd->charm_type != CHARM_TYPE_NONE && dstsd->charm_count > 0) clif->charm_single(sd->fd, dstsd); for( i = 0; i < dstsd->sc_display_count; i++ ) { |