i am an idiot

This commit is contained in:
leijurv 2018-08-17 20:46:18 -07:00
parent 47787fc128
commit 85dcedc26a
1 changed files with 3 additions and 3 deletions

View File

@ -87,13 +87,13 @@ public class MovementPillar extends Movement {
return vine.north();
}
if (BlockStateInterface.get(vine.south()).isBlockNormalCube()) {
return vine.north();
return vine.south();
}
if (BlockStateInterface.get(vine.east()).isBlockNormalCube()) {
return vine.north();
return vine.east();
}
if (BlockStateInterface.get(vine.west()).isBlockNormalCube()) {
return vine.north();
return vine.west();
}
return null;
}