Remove debug messages

This commit is contained in:
Sollace 2024-05-27 06:40:47 +01:00
parent 2edf2c6989
commit a25d8b7a2c
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB
3 changed files with 0 additions and 4 deletions

View file

@ -181,7 +181,6 @@ public class EarthPonyStompAbility implements Ability<Hit> {
@Override
public void onCancelled() {
System.out.println("Cancel Stomp");
iplayer.playSound(USounds.GUI_ABILITY_FAIL, 1F);
}
};

View file

@ -32,7 +32,6 @@ public interface TargettingUtil {
static Vec3d getProjectedPos(LivingEntity entity) {
if (entity instanceof PlayerEntity player) {
Vec3d velocity = Pony.of(player).getPhysics().getClientVelocity();
System.out.println(velocity);
return entity.getEyePos().add(velocity.multiply(1.5)).add(0, -1, 0);
}
return entity.getEyePos().add(entity.getVelocity());

View file

@ -833,7 +833,6 @@ public class Pony extends Living<PlayerEntity> implements Copyable<Pony>, Update
@Override
public void toSyncronisedNbt(NbtCompound compound) {
System.out.println("toSyncNbt");
super.toSyncronisedNbt(compound);
compound.putString("playerSpecies", Race.REGISTRY.getId(getSpecies()).toString());
compound.putString("suppressedSpecies", Race.REGISTRY.getId(getSuppressedRace()).toString());
@ -856,7 +855,6 @@ public class Pony extends Living<PlayerEntity> implements Copyable<Pony>, Update
@Override
public void fromSynchronizedNbt(NbtCompound compound) {
System.out.println("fromSyncNbt");
super.fromSynchronizedNbt(compound);
setSpecies(Race.fromName(compound.getString("playerSpecies"), Race.HUMAN));
setSuppressedRace(Race.fromName(compound.getString("suppressedSpecies"), Race.UNSET));