Skip to content

Commit

Permalink
Fix - determine cancelled:false
Browse files Browse the repository at this point in the history
Heh. Heh. Heh. I knew that >.>
Simple fix... I'm fairly sure no doc or anything like that ever mentions
doing "- determine outcome:false"... as we generally don't even use
prefixes anymore and determine is semirelativelynewishkinda
  • Loading branch information
mcmonkey4eva committed Nov 9, 2013
1 parent 0ca5aff commit d0ebf92
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -46,7 +46,7 @@ public void parseArgs(ScriptEntry scriptEntry) throws InvalidArgumentsException
scriptEntry.addObject("passively", new Element(true));

else if (!scriptEntry.hasObject("outcome"))
scriptEntry.addObject("outcome", arg.asElement());
scriptEntry.addObject("outcome", new Element(arg.raw_value));

else arg.reportUnhandled();
}
Expand Down

0 comments on commit d0ebf92

Please sign in to comment.