From d24b26d960ac1640fa3feb67c8086d21cef86305 Mon Sep 17 00:00:00 2001 From: SirSengir Date: Sun, 9 Sep 2012 12:06:59 +0200 Subject: [PATCH] Fixed chunk reset related to autarchic gates. Closes #231 --- common/buildcraft/transport/GateVanilla.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/buildcraft/transport/GateVanilla.java b/common/buildcraft/transport/GateVanilla.java index 61dbbcd9..9eca7dbd 100644 --- a/common/buildcraft/transport/GateVanilla.java +++ b/common/buildcraft/transport/GateVanilla.java @@ -53,7 +53,7 @@ public class GateVanilla extends Gate { // Load pulser if any if (nbttagcompound.hasKey("Pulser")) { NBTTagCompound nbttagcompoundP = nbttagcompound.getCompoundTag("Pulser"); - pulser = new EnergyPulser((IPowerReceptor) pipe); + addEnergyPulser(pipe); pulser.readFromNBT(nbttagcompoundP); }