Skip to content

Commit cc24236

Browse files
committed
Update CommandProcessing.cs
1 parent 72843a2 commit cc24236

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Intersect.Server.Core/Entities/Events/CommandProcessing.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ private static void ProcessCommand(
640640
Stack<CommandInstance> callStack
641641
)
642642
{
643-
if (player.Sprite != command.Sprite)
643+
if (!string.Equals(player.Sprite, command.Sprite, StringComparison.OrdinalIgnoreCase))
644644
{
645645
player.Sprite = command.Sprite;
646646
PacketSender.SendEntityDataToProximity(player);

0 commit comments

Comments
 (0)