Fixed PosCommand and LogCommand

This commit is contained in:
manio143 2015-05-06 20:46:42 +02:00
parent 690ae82431
commit d3a3abf8c0

View File

@ -28,7 +28,7 @@ namespace TrueCraft.Commands
public override void Handle(IRemoteClient Client, string alias, string[] arguments)
{
if (arguments.Length != 0)
if (arguments.Length != 1)
{
Help(Client, alias, arguments);
return;
@ -61,7 +61,7 @@ namespace TrueCraft.Commands
public override void Handle(IRemoteClient Client, string alias, string[] arguments)
{
if (arguments.Length != 0)
if (arguments.Length != 1)
{
Help(Client, alias, arguments);
return;