mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 19:46:42 +01:00
Remove debug messages
This commit is contained in:
parent
2edf2c6989
commit
a25d8b7a2c
3 changed files with 0 additions and 4 deletions
|
@ -181,7 +181,6 @@ public class EarthPonyStompAbility implements Ability<Hit> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCancelled() {
|
public void onCancelled() {
|
||||||
System.out.println("Cancel Stomp");
|
|
||||||
iplayer.playSound(USounds.GUI_ABILITY_FAIL, 1F);
|
iplayer.playSound(USounds.GUI_ABILITY_FAIL, 1F);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -32,7 +32,6 @@ public interface TargettingUtil {
|
||||||
static Vec3d getProjectedPos(LivingEntity entity) {
|
static Vec3d getProjectedPos(LivingEntity entity) {
|
||||||
if (entity instanceof PlayerEntity player) {
|
if (entity instanceof PlayerEntity player) {
|
||||||
Vec3d velocity = Pony.of(player).getPhysics().getClientVelocity();
|
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(velocity.multiply(1.5)).add(0, -1, 0);
|
||||||
}
|
}
|
||||||
return entity.getEyePos().add(entity.getVelocity());
|
return entity.getEyePos().add(entity.getVelocity());
|
||||||
|
|
|
@ -833,7 +833,6 @@ public class Pony extends Living<PlayerEntity> implements Copyable<Pony>, Update
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void toSyncronisedNbt(NbtCompound compound) {
|
public void toSyncronisedNbt(NbtCompound compound) {
|
||||||
System.out.println("toSyncNbt");
|
|
||||||
super.toSyncronisedNbt(compound);
|
super.toSyncronisedNbt(compound);
|
||||||
compound.putString("playerSpecies", Race.REGISTRY.getId(getSpecies()).toString());
|
compound.putString("playerSpecies", Race.REGISTRY.getId(getSpecies()).toString());
|
||||||
compound.putString("suppressedSpecies", Race.REGISTRY.getId(getSuppressedRace()).toString());
|
compound.putString("suppressedSpecies", Race.REGISTRY.getId(getSuppressedRace()).toString());
|
||||||
|
@ -856,7 +855,6 @@ public class Pony extends Living<PlayerEntity> implements Copyable<Pony>, Update
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void fromSynchronizedNbt(NbtCompound compound) {
|
public void fromSynchronizedNbt(NbtCompound compound) {
|
||||||
System.out.println("fromSyncNbt");
|
|
||||||
super.fromSynchronizedNbt(compound);
|
super.fromSynchronizedNbt(compound);
|
||||||
setSpecies(Race.fromName(compound.getString("playerSpecies"), Race.HUMAN));
|
setSpecies(Race.fromName(compound.getString("playerSpecies"), Race.HUMAN));
|
||||||
setSuppressedRace(Race.fromName(compound.getString("suppressedSpecies"), Race.UNSET));
|
setSuppressedRace(Race.fromName(compound.getString("suppressedSpecies"), Race.UNSET));
|
||||||
|
|
Loading…
Reference in a new issue