Skip to content

Commit

Permalink
Don't throw errors on no-argument commands
Browse files Browse the repository at this point in the history
- engage
^ should not throw an error.
  • Loading branch information
mcmonkey4eva committed Oct 7, 2014
1 parent 4a06c97 commit 7d7e16a
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -128,6 +128,7 @@ else if (command.charAt(0) == '~') {
this.pre_tagged_args = Arrays.asList(arguments);
} else {
this.args = new ArrayList<String>();
this.pre_tagged_args = new ArrayList<String>();
}

// Check for replaceable tags. We'll try not to make a habit of checking for tags/doing
Expand Down

0 comments on commit 7d7e16a

Please sign in to comment.