From 784090ec00854ea1ea40caa1736b7c290ccfb414 Mon Sep 17 00:00:00 2001 From: "James R." Date: Sun, 17 Sep 2023 19:21:03 -0700 Subject: [PATCH] Nullify damaging hitlag for players with hyudorotimer --- src/p_inter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_inter.c b/src/p_inter.c index 254275708..60c7bbd8d 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -2301,7 +2301,7 @@ static void AddNullHitlag(player_t *player, tic_t oldHitlag) // 1) repeating damage doesn't count // 2) new damage sources still count - if (player->timeshit <= player->timeshitprev) + if (player->timeshit <= player->timeshitprev || player->hyudorotimer > 0) { player->nullHitlag += (player->mo->hitlag - oldHitlag); }