From 5d28ef0336ada99c2b829b4c85d0c8bd9bd9512e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20N=C3=BCcke?= Date: Wed, 15 Oct 2014 14:49:28 +0200 Subject: [PATCH] Removed derpy sided annotation, should fix #600 - assuming that was on OC1.4, otherwise... this shouldn't really have happened. --- src/main/scala/li/cil/oc/common/tileentity/traits/Computer.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/scala/li/cil/oc/common/tileentity/traits/Computer.scala b/src/main/scala/li/cil/oc/common/tileentity/traits/Computer.scala index b8ff1add2..f446ab9bb 100644 --- a/src/main/scala/li/cil/oc/common/tileentity/traits/Computer.scala +++ b/src/main/scala/li/cil/oc/common/tileentity/traits/Computer.scala @@ -51,7 +51,6 @@ trait Computer extends Environment with ComponentInventory with Rotatable with B if (isServer) machine.canInteract(player) else !Settings.get.canComputersBeOwned || _users.isEmpty || _users.contains(player) - @SideOnly(Side.CLIENT) def isRunning = _isRunning @SideOnly(Side.CLIENT)