diff --git a/common/buildcraft/core/robots/EntityRobot.java b/common/buildcraft/core/robots/EntityRobot.java index 7749386b..c5246af6 100755 --- a/common/buildcraft/core/robots/EntityRobot.java +++ b/common/buildcraft/core/robots/EntityRobot.java @@ -80,7 +80,7 @@ public class EntityRobot extends EntityLiving implements dataWatcher.updateObject(16, board.getNBTHandler().getID()); if (world.isRemote) { - + RPCHandler.rpcServer(this, "requestInitialization", itemInUse); } } @@ -471,4 +471,9 @@ public class EntityRobot extends EntityLiving implements public void requestInitialization(RPCMessageInfo info) { RPCHandler.rpcPlayer(info.sender, this, "clientSetItemInUse", itemInUse); } + + @Override + public void setHealth(float par1) { + // deactivate healh management + } }