summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-06 05:09:21 +0000
committershennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-06 05:09:21 +0000
commit84e43c35ac684c71ce48957658f996e6ccb55f96 (patch)
tree6401be0a278e1e10c1b765df2b1055ee6c94b134
parentad6eb9badbd17de02aa8c87dae3b71ed8cf1bb03 (diff)
downloadhercules-84e43c35ac684c71ce48957658f996e6ccb55f96.tar.gz
hercules-84e43c35ac684c71ce48957658f996e6ccb55f96.tar.bz2
hercules-84e43c35ac684c71ce48957658f996e6ccb55f96.tar.xz
hercules-84e43c35ac684c71ce48957658f996e6ccb55f96.zip
Fixed @mute death immunity, bugreport:4960
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15014 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--src/map/status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 28506a4f6..1a86cb5e2 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -5304,7 +5304,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val
if( !sc )
return 0; //Unable to receive status changes
- if( status_isdead(bl) )
+ if( status_isdead(bl) && type != SC_NOCHAT ) // SC_NOCHAT should work even on dead characters
return 0;
if( bl->type == BL_MOB && type != SC_SAFETYWALL && type != SC_PNEUMA )