Fix people getting stuck in chests.

This commit is contained in:
TadahTech 2016-09-01 05:34:37 -05:00
parent 68743cf73c
commit 9fcee07427
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ import org.bukkit.World;
public class LocationConstants
{
private static final int CHEST_X = 34;
private static final int CHEST_X = 31;
private static final int CHEST_Z = 23;
/**
@ -52,7 +52,7 @@ public class LocationConstants
return chestLocation.clone().add(0, 0, CHEST_ADD);
}
return null;
return chestLocation.clone().add(CHEST_ADD, 0, CHEST_ADD);
}
}