Voidscape

Voidscape

6M Downloads

[1.20.1-1.5.348] NPE in NullServant Special Augment Goal

TigerWalts opened this issue ยท 0 comments

commented

Crash Log: https://mclo.gs/dGeFCkk

java.lang.NullPointerException: Cannot invoke "net.minecraft.world.phys.Vec3.m_252839_()" because "this.aoe2" is null
	at tamaized.voidscape.entity.ai.nullservant.SpecialAugmentGoal.m_8037_(SpecialAugmentGoal.java:154) ~[Voidscape-1.20.1-1.5.348.jar%23849!/:1.20.1-1.5.348] {re:classloading}

if (aoe1 == null && aoe2 == null) {
aoe1 = NullServantAugmentBlockEntity.randomPos(parent.level(), parent.getRandom(), parent.position().add(0.0D, 0.75D, 0.0D), parent);
aoe2 = NullServantAugmentBlockEntity.randomPos(parent.level(), parent.getRandom(), parent.position().add(0.0D, 0.75D, 0.0D), parent);
parent.setAugmentAttackAoes(aoe1 == null ? new Vector3f() : aoe1.toVector3f(), aoe2 == null ? new Vector3f() : aoe2.toVector3f());
} else if (aoe1 != null) {
boom(aoe1);
parent.setAugmentAttackAoes(new Vector3f(), aoe2.toVector3f());
aoe1 = null;
} else {
boom(aoe2);
parent.setAugmentAttackAoes(new Vector3f(), new Vector3f());
aoe2 = null;
}

NullServantAugmentBlockEntity.randomPos() may return null on a random chance. This means that aoe1 may be non-null while aoe2 is null.