
Wrong super call in TestEntity2
Dev0Louis opened this issue ยท 1 comments
@Override
public void onStoppedTrackingBy(ServerPlayerEntity player) {
player.networkHandler.sendPacket(new PlayerRemoveS2CPacket(List.of(this.getUuid())));
super.onStartedTrackingBy(player);
}
It calls super.onStartedTrackingBy, but I think it should be super.onStoppedTrackingBy