diff --git a/src/main/java/com/minelittlepony/unicopia/entity/player/ManaContainer.java b/src/main/java/com/minelittlepony/unicopia/entity/player/ManaContainer.java index 40c80e09..7669a0d9 100644 --- a/src/main/java/com/minelittlepony/unicopia/entity/player/ManaContainer.java +++ b/src/main/java/com/minelittlepony/unicopia/entity/player/ManaContainer.java @@ -122,9 +122,7 @@ public class ManaContainer implements MagicReserves, Tickable, NbtSerialisable { value = get() + diff / (1 + pony.getLevel().get()); } - System.out.println("Setting mana to: " + value); super.set(value); - System.out.println("Mana set to: " + get()); } } @@ -143,11 +141,7 @@ public class ManaContainer implements MagicReserves, Tickable, NbtSerialisable { @Override public float get() { - float value = pony.getMaster().getDataTracker().get(marker); - if (this == mana) { - System.out.println("Mana is: " + value); - } - return value; + return pony.getMaster().getDataTracker().get(marker); } @Override