Initial push of the Inversion Pillars - this is before full implementation of features and before fixing the item model.

This commit is contained in:
WayofTime 2016-09-11 10:02:06 -04:00
parent 540e6941ef
commit 5c627d123c
10 changed files with 306 additions and 26 deletions

View file

@ -85,9 +85,9 @@ public class TileInversionPillar extends TileTicking
System.out.println("Increasing radius!");
}
if (currentInversion >= inversionToAddPillar)
if (currentInfectionRadius >= 10 && currentInversion >= inversionToAddPillar)
{
//TODO: Spawn pillar
}
}
}
@ -140,7 +140,7 @@ public class TileInversionPillar extends TileTicking
if (totalGeneratedWill > 0)
{
WorldDemonWillHandler.fillWillToMaximum(worldObj, pos, type, totalGeneratedWill, maxWillForChunk, true);
WorldDemonWillHandler.fillWillToMaximum(worldObj, pos, type, totalGeneratedWill, maxWillForChunk, true); //TODO: Find out why this method doesn't work.
}
}