Skip to content

Commit

Permalink
Reduce timeout for NPC actions. Fixes NPC graphic glitches when movin…
Browse files Browse the repository at this point in the history
…g fast.
  • Loading branch information
ethanmoffat committed Sep 9, 2022
1 parent 4f9286e commit aa0f957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EndlessClient/Rendering/NPC/NPCAnimator.cs
Expand Up @@ -11,7 +11,7 @@ namespace EndlessClient.Rendering.NPC
{
public class NPCAnimator : GameComponent, INPCAnimator
{
private const int ACTION_FRAME_TIME_MS = 100;
private const int ACTION_FRAME_TIME_MS = 90;

private readonly List<RenderFrameActionTime> _npcStartWalkingTimes;
private readonly List<RenderFrameActionTime> _npcStartAttackingTimes;
Expand Down

0 comments on commit aa0f957

Please sign in to comment.