summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-23 19:56:01 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-23 19:56:01 +0000
commitfea1f5fe47668fb1119c7805bcc934fc8b30579a (patch)
treeb3078d0a37f5c149977d80bd0112738f747bcbfd /src/map/pc.c
parenta072cb579041699023f5197ffcb303acef112e2f (diff)
downloadhercules-fea1f5fe47668fb1119c7805bcc934fc8b30579a.tar.gz
hercules-fea1f5fe47668fb1119c7805bcc934fc8b30579a.tar.bz2
hercules-fea1f5fe47668fb1119c7805bcc934fc8b30579a.tar.xz
hercules-fea1f5fe47668fb1119c7805bcc934fc8b30579a.zip
- Fixed Devotion not properly being cleared on death/near death in some cases.
- Fixed Shield-Reflect not being correctly ended when devotion does. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5720 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 40b323f46..03ec2c512 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -4633,6 +4633,7 @@ int pc_damage(struct block_list *src,struct map_session_data *sd,int damage)
if (sd->devotion[i]){
struct map_session_data *devsd = map_id2sd(sd->devotion[i]);
if (devsd) status_change_end(&devsd->bl,SC_DEVOTION,-1);
+ sd->devotion[i] = 0;
}
}