Skip to content

Commit c784bd1

Browse files
Blast furnace fix
Fixes #3 - not sure how I missed this
1 parent ead9d39 commit c784bd1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ buildscript {
1717

1818
apply plugin: 'forge'
1919

20-
version = "1.2.0"
20+
version = "1.2.1"
2121
group= "blusunrize"
2222
archivesBaseName = "WitchingGadgets-1.7.10"
2323

src/main/java/witchinggadgets/common/util/handler/WGWandManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ private boolean createBlastFurnace(ItemStack itemstack, EntityPlayer player, Wor
8686
for(int zz=-1;zz<=1;zz++)
8787
for(int xx=-1;xx<=1;xx++)
8888
{
89-
world.setBlock(x+xx,y+yy,z+zz, WGContent.BlockStoneDevice,8, 3);
89+
world.setBlock(x+xx,y+yy,z+zz, WGContent.BlockStoneDevice, 2, 3);
9090
TileEntityBlastfurnace tile = (TileEntityBlastfurnace)world.getTileEntity(x+xx,y+yy,z+zz);
9191
tile.masterPos = new int[]{x,y,z};
9292
byte pos = (byte)( (yy*9)+((zz+1)*3)+(xx+1) );

0 commit comments

Comments
 (0)