diff options
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c index 340e58b8a..de91e4eba 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -8493,8 +8493,7 @@ int status_change_end_(struct block_list* bl, enum sc_type type, int tid, const case SC_WHITEIMPRISON: if( tid == -1 ) break; // Terminated by Damage - clif_damage(bl,bl,0,0,0,400*sce->val1,0,0,0); - status_zap(bl,400*sce->val1,0); + status_fix_damage(bl,bl,400*sce->val1,clif_damage(bl,bl,gettick(),0,0,400*sce->val1,0,0,0)); break; case SC_WUGDASH: { @@ -8570,6 +8569,7 @@ int status_change_end_(struct block_list* bl, enum sc_type type, int tid, const case SC_SLEEP: case SC_DEEPSLEEP: case SC_BURNING: + case SC_WHITEIMPRISON: sc->opt1 = 0; break; |