From 3e1354d51991c67a2f865d6aebb7caa8fc4edc7a 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 8f62a39..a035cd0 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