This commit is contained in:
aUniqueUser
2020-02-25 21:22:35 -05:00
parent 4b526f7242
commit 3c2838df9e

View File

@@ -41,7 +41,7 @@ public class TunnelCommand extends Command {
args.requireMax(3); args.requireMax(3);
if (args.hasExactly(3)) { if (args.hasExactly(3)) {
boolean cont = true; boolean cont = true;
int depth = Integer.parseInt(args.peekString(0))-1; int depth = Integer.parseInt(args.peekString(0));
int height = Integer.parseInt(args.peekString(1))-1; int height = Integer.parseInt(args.peekString(1))-1;
int width = Integer.parseInt(args.peekString(2))-1; int width = Integer.parseInt(args.peekString(2))-1;