Remove a debug message

This commit is contained in:
Sollace 2021-08-25 14:02:16 +02:00
parent dda6576731
commit bd49bdd52e
2 changed files with 0 additions and 3 deletions

View file

@ -31,7 +31,6 @@ public class CreeperBehaviour extends EntityBehaviour<CreeperEntity> {
entity.getVisibilityCache().clear();
}
System.out.println(fuseCountDown);
spell.getDisguise().getOrCreateTag().putInt("fuseCountdown", fuseCountDown);
}
}

View file

@ -52,7 +52,6 @@ public class PoisonedJokeEnchantment extends SimpleEnchantment implements Identi
if (rng.nextInt(Math.max(1, (light * 9) + (int)data.level)) == 0) {
data.level = rng.nextInt(5000);
Unicopia.LOGGER.info("Boo!");
user.getWorld().playSoundFromEntity(
null,
user.getEntity(),
@ -77,7 +76,6 @@ public class PoisonedJokeEnchantment extends SimpleEnchantment implements Identi
clientProfiler.startTick();
clientProfiler.push("Loading poisoned joke sound options");
sounds = getResources(manager, FILE)
.flatMap(this::loadFile)
.distinct()