fixed null args more

This commit is contained in:
Mini-Chiss 2015-08-17 12:38:41 +02:00
parent 0a23f91592
commit 58e517a4d7
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ public abstract class MultiCommandBase<PluginType extends MiniPlugin> extends Co
public void Execute(Player caller, String[] args)
{
String commandName = null;
String[] newArgs = null;
String[] newArgs = new String[] {};
if (args != null && args.length > 0)
{