Make all the arguments optional on the transfer, we handle that ourself.

This way we handle it ourself for language purposes.
This commit is contained in:
graywolf336 2014-02-11 20:46:23 -06:00
parent 48a7435fbe
commit 87bb9feecb

View File

@ -12,4 +12,8 @@ public interface Transfer {
@Option(longName={"cell"}, shortName="c", description = "the cell")
public String getCell();
public boolean isPlayer();
public boolean isJail();
public boolean isCell();
}