mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Fix %CALL HORSE%
This commit is contained in:
parent
479b539b44
commit
f8d8e8f28d
1 changed files with 3 additions and 3 deletions
|
@ -783,14 +783,14 @@ namespace HISP.Game.Chat
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (args.Length <= 0)
|
if (args.Length <= 0)
|
||||||
return;
|
return false;
|
||||||
|
string formattedmessage = "";
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (args[0].ToUpper() != "HORSE")
|
if (args[0].ToUpper() != "HORSE")
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
string formattedmessage = Messages.FormatPlayerCommandCompleteMessage(message);
|
formattedmessage = Messages.FormatPlayerCommandCompleteMessage(message);
|
||||||
|
|
||||||
WildHorse horse = WildHorse.WildHorses[GameServer.RandomNumberGenerator.Next(0, WildHorse.WildHorses.Length)];
|
WildHorse horse = WildHorse.WildHorses[GameServer.RandomNumberGenerator.Next(0, WildHorse.WildHorses.Length)];
|
||||||
horse.X = user.X;
|
horse.X = user.X;
|
||||||
|
|
Loading…
Add table
Reference in a new issue