Add a default suggested Deform expression.

This commit is contained in:
Albert Pham 2015-10-28 13:35:14 -07:00
parent 874408ad10
commit 98b61d0fbd

View File

@ -38,7 +38,7 @@ public class DeformArg extends SimpleCommand<Deform> {
private final Flag<Boolean> rawCoordsFlag = addFlag('r', new BooleanFlag("Raw coords mode"));
private final Flag<Boolean> offsetFlag = addFlag('o', new BooleanFlag("Offset mode"));
private final StringArg expressionParser = addParameter(new StringArg("expression", "Expression to apply"));
private final StringArg expressionParser = addParameter(new StringArg("expression", "Expression to apply", "y-=0.2"));
@Override
public Deform call(CommandArgs args, CommandLocals locals) throws CommandException {