From 17a770eaf0b02858a3b9cc5d0e855d48cb140043 Mon Sep 17 00:00:00 2001 From: SenseiKiwi Date: Fri, 4 Jul 2014 20:55:57 -0400 Subject: [PATCH] Minor Change Added two comments to CommandTeleportPlayer --- .../mod_pocketDim/commands/CommandTeleportPlayer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/StevenDimDoors/mod_pocketDim/commands/CommandTeleportPlayer.java b/src/main/java/StevenDimDoors/mod_pocketDim/commands/CommandTeleportPlayer.java index 83bf268f..b02222f5 100644 --- a/src/main/java/StevenDimDoors/mod_pocketDim/commands/CommandTeleportPlayer.java +++ b/src/main/java/StevenDimDoors/mod_pocketDim/commands/CommandTeleportPlayer.java @@ -116,14 +116,14 @@ public class CommandTeleportPlayer extends DDCommandBase else if (command.length == 4) { x = Integer.parseInt(command[1]); - y = Integer.parseInt(command[2]) + 1; + y = Integer.parseInt(command[2]) + 1; // Correct the Y value z = Integer.parseInt(command[3]); destination = new Point4D(x, y, z, dimensionID); } else { x = Integer.parseInt(command[2]); - y = Integer.parseInt(command[3]) + 1; + y = Integer.parseInt(command[3]) + 1; // Correct the Y value z = Integer.parseInt(command[4]); destination = new Point4D(x, y, z, dimensionID); }