Skip to content

Commit

Permalink
Play death SFX for all characters
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanmoffat committed May 31, 2024
1 parent 2698ea5 commit b81b488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EndlessClient/Rendering/Character/CharacterRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ private int GetSteppingStoneOffset(CharacterRenderProperties renderProps)

private void CheckForDead()
{
if (_character == _characterProvider.MainCharacter && _lastIsDead != _character.RenderProperties.IsDead)
if (_lastIsDead != _character.RenderProperties.IsDead)
{
_lastIsDead = _character.RenderProperties.IsDead;
if (_lastIsDead)
Expand Down

0 comments on commit b81b488

Please sign in to comment.