summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/map/status.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c
index ce33bceeb..32d8bfacb 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -6780,7 +6780,14 @@ int status_change_timer(int tid, unsigned int tick, int id, int data)
}
if(--(sce->val3) > 0) {
if(++(sce->val4)%5 == 0 && status->hp > status->max_hp/4)
+ {
+ bool flag;
+ map_freeblock_lock();
status_zap(bl, sce->val2, 0);
+ flag = !sc->data[type];
+ map_freeblock_unlock();
+ if (flag) return 0; //target died, SC cancelled already.
+ }
sc_timer_next(1000+tick,status_change_timer, bl->id, data );
return 0;
}