Skip to content

Commit

Permalink
Elder Guardian & Ender Dragon will not have their loot replaced with …
Browse files Browse the repository at this point in the history
…Treasure Bags anymore (to avoid conflicts with other mods)
  • Loading branch information
Majrusz committed May 12, 2021
1 parent a949fe1 commit ec03df7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/majruszs_difficulty/RegistryHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,9 @@ private static void onServerStart( FMLServerStartingEvent event ) {
MinecraftServer server = event.getServer();
UNDEAD_ARMY_MANAGER.updateWorld( server.func_241755_D_() );

TreasureBagManager.addTreasureBagTo( EntityType.ELDER_GUARDIAN, Instances.ELDER_GUARDIAN_TREASURE_BAG, true );
TreasureBagManager.addTreasureBagTo( EntityType.ELDER_GUARDIAN, Instances.ELDER_GUARDIAN_TREASURE_BAG, false );
TreasureBagManager.addTreasureBagTo( EntityType.WITHER, Instances.WITHER_TREASURE_BAG, false );
TreasureBagManager.addTreasureBagTo( EntityType.ENDER_DRAGON, Instances.ENDER_DRAGON_TREASURE_BAG, true );
TreasureBagManager.addTreasureBagTo( EntityType.ENDER_DRAGON, Instances.ENDER_DRAGON_TREASURE_BAG, false );
}

/**
Expand Down

0 comments on commit ec03df7

Please sign in to comment.