diff options
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index a186d4c6c..8b118270b 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -7369,8 +7369,8 @@ void pc_bleeding (struct map_session_data *sd, unsigned int diff_tick) { int hp = 0, sp = 0; - //if( pc_isdead(sd) ) - // return; + if( pc_isdead(sd) ) + return; if (sd->hp_loss.value) { sd->hp_loss.tick += diff_tick; |