fix some tiles dropping stuff that can't be dropped

This commit is contained in:
Raoul Van den Berge
2015-12-22 13:07:57 +01:00
parent 3b143310e3
commit 2c65adaaee
5 changed files with 24 additions and 1 deletions

View File

@@ -290,4 +290,10 @@ public class TileDetector extends TileMachine implements IInventory, ISidedInven
buf.writeInt(amount);
buf.writeBoolean(providesPower);
}
@Override
public boolean canDropInventory()
{
return false;
}
}