From 6c3cb0e9eadcf66f3b440f8a385e58e42611b2fd Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Sun, 7 Nov 2021 23:34:10 -0500 Subject: [PATCH] Fix modhorse --- HorseIsleData | 2 +- HorseIsleServer/HorseIsleServer/Game/Chat/Command.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HorseIsleData b/HorseIsleData index 9540f98..2135825 160000 --- a/HorseIsleData +++ b/HorseIsleData @@ -1 +1 @@ -Subproject commit 9540f98ef9180dca80bcb27599e939a767ba92eb +Subproject commit 2135825724166a05c6fabc0d7550f712aeada1fc diff --git a/HorseIsleServer/HorseIsleServer/Game/Chat/Command.cs b/HorseIsleServer/HorseIsleServer/Game/Chat/Command.cs index ef5c844..740c464 100644 --- a/HorseIsleServer/HorseIsleServer/Game/Chat/Command.cs +++ b/HorseIsleServer/HorseIsleServer/Game/Chat/Command.cs @@ -549,7 +549,7 @@ namespace HISP.Game.Chat try { id = int.Parse(args[0]); - if(args[1].ToUpper() == "COLOR") + if(args[1].ToUpper() != "COLOR") amount = int.Parse(args[2]); } catch (Exception)