mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-25 14:14:32 +01:00
Remove debug prints
This commit is contained in:
parent
638a136d6d
commit
09f98be74d
1 changed files with 1 additions and 7 deletions
|
@ -122,9 +122,7 @@ public class ManaContainer implements MagicReserves, Tickable, NbtSerialisable {
|
||||||
value = get() + diff / (1 + pony.getLevel().get());
|
value = get() + diff / (1 + pony.getLevel().get());
|
||||||
}
|
}
|
||||||
|
|
||||||
System.out.println("Setting mana to: " + value);
|
|
||||||
super.set(value);
|
super.set(value);
|
||||||
System.out.println("Mana set to: " + get());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -143,11 +141,7 @@ public class ManaContainer implements MagicReserves, Tickable, NbtSerialisable {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public float get() {
|
public float get() {
|
||||||
float value = pony.getMaster().getDataTracker().get(marker);
|
return pony.getMaster().getDataTracker().get(marker);
|
||||||
if (this == mana) {
|
|
||||||
System.out.println("Mana is: " + value);
|
|
||||||
}
|
|
||||||
return value;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue