Skip to content

Commit

Permalink
Fix Walk command NPE with stop argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Jul 9, 2015
1 parent c2e6b18 commit 8647495
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -99,7 +99,7 @@ public void execute(ScriptEntry scriptEntry) throws CommandExecutionException {

// Debug the execution

dB.report(scriptEntry, getName(), loc.debug()
dB.report(scriptEntry, getName(), (loc!= null ? loc.debug() : "")
+ (speed != null ? speed.debug() : "")
+ (auto_range != null ? auto_range.debug() : "")
+ (radius != null ? radius.debug() : "")
Expand Down

0 comments on commit 8647495

Please sign in to comment.