Posted November 1, 201410 yr Hello! I want to refine the vanilla biomes nad I'd like to remove htem so I can readd my own, how would I go about it exacly? I ahve looked through the source code but I can't find anything that removes them. I might just be blind, do you have any suggestions? Best regards
November 2, 201410 yr Author I have also tried doing this to mimic my remove recipie algorithm...no success. private static void removeBiome(BiomeGenBase biome){ List<BiomeEntry> biomes = BiomeManager.warmBiomes; Iterator<BiomeEntry> check = biomes.iterator(); while (check.hasNext()){ BiomeGenBase checkBiome = check.next().biome; if (checkBiome == biome){ check.remove(); } } } }
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.