Skip to content

Commit

Permalink
Fix silly mistake in Create command
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Nov 13, 2013
1 parent caad20e commit 853c34d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -42,7 +42,7 @@ else if (!scriptEntry.hasObject("name"))
scriptEntry.addObject("name", arg.asElement());

else if (!scriptEntry.hasObject("traits")
&& arg.matches("t, trait, traits")
&& arg.matchesPrefix("t, trait, traits")
&& arg.matchesArgumentType(dList.class))
scriptEntry.addObject("traits", arg.asType(dList.class));

Expand Down
Expand Up @@ -46,7 +46,7 @@ else if (!scriptEntry.hasObject("world_name"))
public void execute(ScriptEntry scriptEntry) throws CommandExecutionException {

// Debug the execution
// dB.report(getName(), required_integer.debug() + required_location.debug());
// dB.report(scriptEntry, getName(), required_integer.debug() + required_location.debug());

World world;

Expand Down

0 comments on commit 853c34d

Please sign in to comment.