Removed Redudent Server side check
Was not aware that it was only called server side so the check wasn't required.
This commit is contained in:
parent
b0003a082c
commit
c693948c49
1 changed files with 0 additions and 1 deletions
|
@ -243,7 +243,6 @@ public class ContainerGateInterface extends BuildCraftContainer {
|
||||||
@Override
|
@Override
|
||||||
public void updateCraftingResults() {
|
public void updateCraftingResults() {
|
||||||
super.updateCraftingResults();
|
super.updateCraftingResults();
|
||||||
if(CoreProxy.proxy.isRenderWorld(pipe.worldObj)) return; /* Server only from this point */
|
|
||||||
int state = calculateTriggerState();
|
int state = calculateTriggerState();
|
||||||
if(state != lastTriggerState){
|
if(state != lastTriggerState){
|
||||||
for(int i = 0; i < this.crafters.size(); i++){
|
for(int i = 0; i < this.crafters.size(); i++){
|
||||||
|
|
Loading…
Reference in a new issue