
Xrated_junior
Members-
Content Count
3 -
Joined
-
Last visited
Community Reputation
1 NeutralAbout Xrated_junior
-
Rank
Tree Puncher
-
(SOLVED) [1.14.4] Modify Vanilla Mob Spawning
Xrated_junior replied to MineModder2000's topic in Modder Support
Ahhh okay, Thank you very much for your help! -
(SOLVED) [1.14.4] Modify Vanilla Mob Spawning
Xrated_junior replied to MineModder2000's topic in Modder Support
Iterator<SpawnListEntry> biomeSpawns = biome.getSpawns(EntityClassification.CREATURE).iterator(); while(biomeSpawns.hasNext()) { SpawnListEntry entry = biomeSpawns.next(); if (entry.entityType == EntityType.PIG) { biomeSpawns.remove(); } } Thank you! I will definitely look at that. I did get it to work eventually. Don't know if it looks bad though... -
Xrated_junior started following (SOLVED) [1.14.4] Modify Vanilla Mob Spawning
-
(SOLVED) [1.14.4] Modify Vanilla Mob Spawning
Xrated_junior replied to MineModder2000's topic in Modder Support
I'm very new to modding and I can't seem to figure out how to do it... Maybe I'm being really stupid, but how did you do it?