summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 32d8bfacb..a05c4611b 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -5220,8 +5220,6 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val
break;
case SC_STONE:
- val2 = status->max_hp/100; //Petrified damage per second: 1%
- if (!val2) val2 = 1;
val3 = tick/1000; //Petrified HP-damage iterations.
if(val3 < 1) val3 = 1;
tick = val4; //Petrifying time.
@@ -6780,14 +6778,7 @@ 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.
- }
+ status_percent_damage(NULL, bl, 1, 0, false);
sc_timer_next(1000+tick,status_change_timer, bl->id, data );
return 0;
}