mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-08 06:26:43 +01:00
Remove a debug message
This commit is contained in:
parent
dda6576731
commit
bd49bdd52e
2 changed files with 0 additions and 3 deletions
|
@ -31,7 +31,6 @@ public class CreeperBehaviour extends EntityBehaviour<CreeperEntity> {
|
||||||
entity.getVisibilityCache().clear();
|
entity.getVisibilityCache().clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
System.out.println(fuseCountDown);
|
|
||||||
spell.getDisguise().getOrCreateTag().putInt("fuseCountdown", fuseCountDown);
|
spell.getDisguise().getOrCreateTag().putInt("fuseCountdown", fuseCountDown);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,7 +52,6 @@ public class PoisonedJokeEnchantment extends SimpleEnchantment implements Identi
|
||||||
if (rng.nextInt(Math.max(1, (light * 9) + (int)data.level)) == 0) {
|
if (rng.nextInt(Math.max(1, (light * 9) + (int)data.level)) == 0) {
|
||||||
data.level = rng.nextInt(5000);
|
data.level = rng.nextInt(5000);
|
||||||
|
|
||||||
Unicopia.LOGGER.info("Boo!");
|
|
||||||
user.getWorld().playSoundFromEntity(
|
user.getWorld().playSoundFromEntity(
|
||||||
null,
|
null,
|
||||||
user.getEntity(),
|
user.getEntity(),
|
||||||
|
@ -77,7 +76,6 @@ public class PoisonedJokeEnchantment extends SimpleEnchantment implements Identi
|
||||||
clientProfiler.startTick();
|
clientProfiler.startTick();
|
||||||
clientProfiler.push("Loading poisoned joke sound options");
|
clientProfiler.push("Loading poisoned joke sound options");
|
||||||
|
|
||||||
|
|
||||||
sounds = getResources(manager, FILE)
|
sounds = getResources(manager, FILE)
|
||||||
.flatMap(this::loadFile)
|
.flatMap(this::loadFile)
|
||||||
.distinct()
|
.distinct()
|
||||||
|
|
Loading…
Reference in a new issue