diff --git a/BM_src/WayofTime/alchemicalWizardry/common/PacketHandler.java b/BM_src/WayofTime/alchemicalWizardry/common/PacketHandler.java index adcce2e2..cb7c0d38 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/PacketHandler.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/PacketHandler.java @@ -420,6 +420,7 @@ public class PacketHandler implements IPacketHandler TEOrientable tileEntityOrientable = (TEOrientable) tileEntity; tileEntityOrientable.setInputDirection(ForgeDirection.getOrientation(dat.readInt())); tileEntityOrientable.setOutputDirection(ForgeDirection.getOrientation(dat.readInt())); + world.markBlockForRenderUpdate(x, y, z); } } else if (packet.channel.equals("TEPedestal")) { diff --git a/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TESpellBlock.java b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TESpellBlock.java new file mode 100644 index 00000000..d66ddcd9 --- /dev/null +++ b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TESpellBlock.java @@ -0,0 +1,6 @@ +package WayofTime.alchemicalWizardry.common.tileEntity; + +public class TESpellBlock extends TEOrientable +{ + +} diff --git a/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_blank.png b/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_blank.png new file mode 100644 index 00000000..29c332d4 Binary files /dev/null and b/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_blank.png differ diff --git a/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_input.png b/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_input.png new file mode 100644 index 00000000..55345660 Binary files /dev/null and b/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_input.png differ diff --git a/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_output.png b/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_output.png new file mode 100644 index 00000000..52490247 Binary files /dev/null and b/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_output.png differ diff --git a/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_upArrow.png b/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_upArrow.png new file mode 100644 index 00000000..5fcbd044 Binary files /dev/null and b/resources/assets/alchemicalwizardry/textures/blocks/fireEffectBlock_upArrow.png differ