Fixes brace style (#248)
This commit is contained in:
parent
a236617ad9
commit
8149620b0c
1503 changed files with 28575 additions and 1717 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue