Remove is material solid check

This commit is contained in:
Shevchik 2016-05-12 16:21:52 +03:00
parent c6beb03128
commit e12650d62b

View File

@ -98,9 +98,6 @@ public class TrySitEventListener implements Listener {
if (block.getRelative(BlockFace.DOWN).isEmpty()) {
return false;
}
if (!block.getRelative(BlockFace.DOWN).getType().isSolid()) {
return false;
}
// Check for distance distance between player and chair.
if (plugin.distance > 0 && player.getLocation().distance(block.getLocation().add(0.5, 0, 0.5)) > plugin.distance) {