Added more infrastructure to the incense system.

This commit is contained in:
WayofTime 2016-01-26 14:33:02 -05:00
parent 1242fefc30
commit f4d0b18521
11 changed files with 180 additions and 14 deletions

View file

@ -136,7 +136,7 @@ public class TileIncenseAltar extends TileInventory implements ITickable
double appliedTranquility = 0;
for (Entry<EnumTranquilityType, Double> entry : tranquilityMap.entrySet())
{
appliedTranquility += Math.pow(entry.getValue(), 0.9);
appliedTranquility += Math.sqrt(entry.getValue());
}
}
}