Remove debug prints

This commit is contained in:
Sollace 2022-09-16 17:47:13 +02:00
parent 638a136d6d
commit 09f98be74d

View file

@ -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