This commit is contained in:
aUniqueUser 2020-02-25 21:22:35 -05:00
parent 4b526f7242
commit 3c2838df9e
No known key found for this signature in database
GPG Key ID: 84D7C232A1AFDD16
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public class TunnelCommand extends Command {
args.requireMax(3);
if (args.hasExactly(3)) {
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 width = Integer.parseInt(args.peekString(2))-1;