From 5d08edd06abfd29bf897f5f4f872d5aeb5c33ca2 Mon Sep 17 00:00:00 2001 From: Forstride Date: Mon, 23 Apr 2018 05:46:38 -0400 Subject: [PATCH] Removed some loot table entries --- .../common/handler/LootTableEventHandler.java | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/main/java/biomesoplenty/common/handler/LootTableEventHandler.java b/src/main/java/biomesoplenty/common/handler/LootTableEventHandler.java index a65330bf2..aeff6b1cb 100644 --- a/src/main/java/biomesoplenty/common/handler/LootTableEventHandler.java +++ b/src/main/java/biomesoplenty/common/handler/LootTableEventHandler.java @@ -17,15 +17,6 @@ public class LootTableEventHandler @SubscribeEvent public void onLootTableLoad(LootTableLoadEvent event) { - if (event.getName().equals(LootTableList.CHESTS_NETHER_BRIDGE)) - { - LootPool main = event.getTable().getPool("main"); - if (main != null) - { - main.addEntry(new LootEntryItem(BOPItems.ash, 3, 6, new LootFunction[0], new LootCondition[0], "biomesoplenty:ash")); - main.addEntry(new LootEntryItem(BOPItems.fleshchunk, 5, 5, new LootFunction[0], new LootCondition[0], "biomesoplenty:fleshchunk")); - } - } if (event.getName().equals(LootTableList.CHESTS_SPAWN_BONUS_CHEST)) { LootPool main = event.getTable().getPool("main"); @@ -36,13 +27,5 @@ public class LootTableEventHandler main.addEntry(new LootEntryItem(BOPItems.persimmon, 4, 2, new LootFunction[0], new LootCondition[0], "biomesoplenty:persimmon")); } } - if (event.getName().equals(LootTableList.GAMEPLAY_FISHING_JUNK)) - { - LootPool main = event.getTable().getPool("main"); - if (main != null) - { - main.addEntry(new LootEntryItem(new ItemStack(BOPBlocks.seaweed).getItem(), 7, 1, new LootFunction[0], new LootCondition[0], "biomesoplenty:seaweed")); - } - } } } \ No newline at end of file