Update forge, fix ticking tiles.
This commit is contained in:
parent
20af49394f
commit
a795f90971
2 changed files with 5 additions and 4 deletions
|
@ -75,8 +75,8 @@ if (ENV.BUILD_NUMBER) {
|
|||
}
|
||||
|
||||
minecraft {
|
||||
version = "1.8.8-11.15.0.1595-1.8.8"
|
||||
mappings = 'snapshot_20151129'
|
||||
version = "1.8.8-11.15.0.1609-1.8.8"
|
||||
mappings = 'snapshot_20151205'
|
||||
replace "@MODVERSION@", project.version
|
||||
makeObfSourceJar = false
|
||||
useDepAts = true
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
package techreborn.tiles;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.client.renderer.texture.ITickable;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.network.NetworkManager;
|
||||
import net.minecraft.network.Packet;
|
||||
import net.minecraft.network.play.server.S35PacketUpdateTileEntity;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.util.EnumFacing;
|
||||
import net.minecraft.util.ITickable;
|
||||
import reborncore.common.packets.PacketHandler;
|
||||
import techreborn.blocks.BlockMachineBase;
|
||||
|
||||
|
@ -34,10 +34,11 @@ public class TileMachineBase extends TileEntity implements ITickable {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void tick() {
|
||||
public void update() {
|
||||
updateEntity();
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public void updateEntity() {
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue