diff options
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index ce0242511..3e36817c5 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4615,7 +4615,8 @@ int status_change_clear(struct block_list *bl,int type) //Type 0: PC killed -> EDP and Meltdown must not be dispelled. [Skotlex]
// Do not reset Xmas status when killed. [Valaris]
if(sc->data[i].timer == -1 ||
- (type == 0 && (i == SC_EDP || i == SC_MELTDOWN || i == SC_XMAS)))
+ (type == 0 &&
+ (i == SC_EDP || i == SC_MELTDOWN || i == SC_XMAS || i == SC_NOCHAT)))
continue;
status_change_end(bl, i, -1);
|