From 914d23e91073f293d6b09ce8fe448705975b5f12 Mon Sep 17 00:00:00 2001 From: DeaDDooMER Date: Tue, 18 Jan 2022 23:52:30 +0300 Subject: [PATCH] render: fix archvile fire animation --- src/game/g_monsters.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/g_monsters.pas b/src/game/g_monsters.pas index b6e68b5..777453a 100644 --- a/src/game/g_monsters.pas +++ b/src/game/g_monsters.pas @@ -1663,7 +1663,7 @@ begin FAnim[a, TDirection.D_LEFT] := TAnimationState.Create(ANIMTABLE[a].loop, MONSTER_ANIMTABLE[MonsterType].AnimSpeed[a], MONSTER_ANIMTABLE[MonsterType].AnimCount[a]); end; if MonsterType = MONSTER_VILE then - vilefire := TAnimationState.Create(True, 2, 0); // !!! len + vilefire := TAnimationState.Create(True, 2, 8); end; function TMonster.Damage(aDamage: Word; VelX, VelY: Integer; SpawnerUID: Word; t: Byte): Boolean; -- 2.29.2