From: DeaDDooMER Date: Tue, 18 Jan 2022 20:52:30 +0000 (+0300) Subject: render: fix archvile fire animation X-Git-Url: http://deadsoftware.ru/gitweb?a=commitdiff_plain;h=3e1354d51991c67a2f865d6aebb7caa8fc4edc7a;p=d2df-sdl.git render: fix archvile fire animation --- 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;