Version increment to 0.6.4

This commit is contained in:
Raoul Van den Berge
2016-05-18 00:40:29 +02:00
parent 4da67798f0
commit e5ba16e27c
4 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ import refinedstorage.proxy.CommonProxy;
@Mod(modid = RefinedStorage.ID, version = RefinedStorage.VERSION)
public final class RefinedStorage {
public static final String ID = "refinedstorage";
public static final String VERSION = "0.6.3";
public static final String VERSION = "0.6.4";
public static final SimpleNetworkWrapper NETWORK = NetworkRegistry.INSTANCE.newSimpleChannel(ID);

View File

@@ -75,7 +75,7 @@ public abstract class TileMachine extends TileBase implements ISynchronizedConta
}
}
if (!(this instanceof TileCable) && ticks % 5 == 0) {
if (!(this instanceof TileCable) && ticks % 4 == 0) {
RefinedStorageUtils.sendToAllAround(worldObj, pos, new MessageMachineConnectedUpdate(this));
}
}