From f3dcafc893dc9a8ecc5d33f046b14d9b77a84d07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20N=C3=BCcke?= Date: Tue, 26 Nov 2013 22:39:07 +0100 Subject: [PATCH] fixed robot inventory not updating --- li/cil/oc/common/container/Robot.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/li/cil/oc/common/container/Robot.scala b/li/cil/oc/common/container/Robot.scala index 3bd76baac..bc812f7a0 100644 --- a/li/cil/oc/common/container/Robot.scala +++ b/li/cil/oc/common/container/Robot.scala @@ -23,6 +23,7 @@ class Robot(playerInventory: InventoryPlayer, robot: tileentity.Robot) extends P var lastSentBuffer = -1 override def detectAndSendChanges() { + super.detectAndSendChanges() if ((robot.globalBuffer - lastSentBuffer).abs > 1) { ServerPacketSender.sendPowerState(robot) }