X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=blobdiff_plain;f=src%2Fgame%2Fg_player.pas;h=81825dfe7bce4b108fbf20570dcdf17a0f8200f4;hp=7db6de1ed38b0f592bbf5ea1fc77e9c21b7d6033;hb=c1ffcbff92f1cda66945281f6f946acce3b6e4c7;hpb=5659cfd3d124f0f387e1941101c03656b46e56e8 diff --git a/src/game/g_player.pas b/src/game/g_player.pas index 7db6de1..81825df 100644 --- a/src/game/g_player.pas +++ b/src/game/g_player.pas @@ -5281,7 +5281,7 @@ begin end; FFirePainTime := FFirePainTime - 1; FFireTime := FFireTime - 1; - if ((FFireTime mod 36) = 0) and (FMegaRulez[MR_INVUL] < gTime) then + if ((FFireTime mod 33) = 0) and (FMegaRulez[MR_INVUL] < gTime) then FModel.PlaySound(MODELSOUND_PAIN, 1, FObj.X, FObj.Y); if (FFireTime = 0) and g_Game_IsNet and g_Game_IsServer then MH_SEND_PlayerStats(FUID); @@ -5314,7 +5314,7 @@ begin else if FHealth > -50 then Kill(K_HARDKILL, FLastSpawnerUID, FLastHit) else Kill(K_EXTRAHARDKILL, FLastSpawnerUID, FLastHit); - if FAlive and (FFireTime <= 0) then + if FAlive and ((FLastHit <> HIT_FLAME) or (FFireTime <= 0)) then begin if FDamageBuffer <= 20 then FModel.PlaySound(MODELSOUND_PAIN, 1, FObj.X, FObj.Y) else if FDamageBuffer <= 55 then FModel.PlaySound(MODELSOUND_PAIN, 2, FObj.X, FObj.Y)