Fixes brace style (#248)

This commit is contained in:
Kamron Batman 2020-09-13 21:49:46 -07:00 • committed by GitHub
parent a236617ad9
commit 8149620b0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1503 changed files with 28575 additions and 1717 deletions

View file

@ -20,9 +20,13 @@ namespace Server.Commands.Generic
object obj = null;
if (serial.IsItem)
{
obj = World.FindItem(serial);
}
else if (serial.IsMobile)
{
obj = World.FindMobile(serial);
}
if (obj == null)
{
@ -72,7 +76,9 @@ namespace Server.Commands.Generic
var args = new string[oldArgs.Length - 2];
for (var i = 0; i < args.Length; ++i)
{
args[i] = oldArgs[i + 2];
}
RunCommand(e.Mobile, obj, command, args);
}