Some Feature related fixes

This commit is contained in:
Frank 2022-06-03 00:08:26 +02:00
parent 6adf6486ac
commit 7b9936af05
16 changed files with 310 additions and 57 deletions

View file

@ -28,11 +28,11 @@ public abstract class BiomeSourceMixin implements BiomeSourceAccessor {
@Inject(method = "<init>(Ljava/util/List;)V", at = @At("TAIL"))
public void bcl_init(List list, CallbackInfo ci) {
System.out.println("new BiomeSource (" + Integer.toHexString(hashCode()) + ", biomes=" + possibleBiomes().size() + ")");
if (possibleBiomes().size() == 27) {
System.out.println("Nether????");
} else if (possibleBiomes().size() == 2) {
System.out.println("Datapack Nether???");
}
// System.out.println("new BiomeSource (" + Integer.toHexString(hashCode()) + ", biomes=" + possibleBiomes().size() + ")");
// if (possibleBiomes().size() == 27) {
// System.out.println("Nether????");
// } else if (possibleBiomes().size() == 2) {
// System.out.println("Datapack Nether???");
// }
}
}