Initial stab at 1.11

About halfway.
This commit is contained in:
Nicholas Ignoffo 2016-12-12 19:56:36 -08:00
parent ce52aea512
commit 00d6f8eb46
157 changed files with 1036 additions and 1554 deletions
src/main/java/WayofTime/bloodmagic/tile

View file

@ -35,7 +35,7 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche
{
if (arrayEffect != null)
{
arrayEffect.onEntityCollidedWithBlock(this, worldObj, pos, state, entity);
arrayEffect.onEntityCollidedWithBlock(this, getWorld(), pos, state, entity);
}
}
@ -145,7 +145,7 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche
{
this.decrStackSize(0, 1);
this.decrStackSize(1, 1);
this.worldObj.setBlockToAir(getPos());
this.getWorld().setBlockToAir(getPos());
}
return true;