Made teleposers a bit more foolproof (#1592)

Fixed an issue where a teleposer that somehow got filled with nasty items would crash on tick because the teleposer throws a fit at that nasty item.
This commit is contained in:
Tobias Gremeyer 2019-04-25 07:09:15 +00:00 committed by Nick Ignoffo
parent 73d2459c6c
commit 21f3b9047c

View file

@ -49,7 +49,7 @@ public class TileTeleposer extends TileInventory implements ITickable {
@Override
public void update() {
if (!getWorld().isRemote) {
if (!getWorld().isRemote && canInitiateTeleport()) {
int currentInput = getWorld().getStrongPower(pos);
if (previousInput == 0 && currentInput != 0) {