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
4fd4fcb652
commit
479b539b44
1 changed files with 20 additions and 10 deletions
|
@ -782,7 +782,11 @@ namespace HISP.Game.Chat
|
|||
if (!user.Administrator)
|
||||
return false;
|
||||
|
||||
if (args.Length >= 1)
|
||||
if (args.Length <= 0)
|
||||
return;
|
||||
|
||||
try
|
||||
{
|
||||
if (args[0].ToUpper() != "HORSE")
|
||||
return false;
|
||||
|
||||
|
@ -793,6 +797,12 @@ namespace HISP.Game.Chat
|
|||
horse.Y = user.Y;
|
||||
|
||||
GameServer.UpdateAreaForAll(user.X, user.Y);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
byte[] chatPacket = PacketBuilder.CreateChat(formattedmessage, PacketBuilder.CHAT_BOTTOM_LEFT);
|
||||
user.LoggedinClient.SendPacket(chatPacket);
|
||||
|
|
Loading…
Add table
Reference in a new issue