From e3eefb6acc92031dc1f424fcf268c9c6f084e7a6 Mon Sep 17 00:00:00 2001 From: aleos Date: Sun, 14 Jan 2024 16:11:00 -0500 Subject: [PATCH] Fixes invincible timer check --- src/map/clif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index e022fef4f5..cfbf17af36 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -11232,7 +11232,7 @@ void clif_parse_LoadEndAck(int fd,map_session_data *sd) } // Trigger skill effects if you appear standing on them - if (mapdata && mapdata->getMapFlag(MF_INVINCIBLE_TIME)) + if (sd->invincible_timer == INVALID_TIMER) skill_unit_move(&sd->bl,gettick(),1); pc_show_questinfo_reinit(sd);