New Feature - Cave Spider Loot Bundle

Content of Cave Spider Bundle
- String

- Spider Eye

- Fermented Spider Eye

- Cobweb

public class CaveSpiderLootBundleContent {
public static Map<Item, Integer> getItems() {
return SpiderLootBundleContent.getItems();
}
}
New Feature - Axolotl Loot Bundle

Content of Axolotl Bundle
- Salmon

- Cod

- Pufferfish

- Tropical Fish

public class AxolotlLootBundleContent {
public static Map<Item, Integer> getItems() {
Map<Item, Integer> items = new HashMap<>();
items.put(Items.TROPICAL_FISH, 2);
items.put(Items.PUFFERFISH, 2);
items.put(Items.COD, 2);
items.put(Items.SALMON, 2);
return items;
}
}
New Features - Blaze Loot Bundle

Content of Blaze Bundle
- Blaze Rod

- Blaze Powder

public class BlazeLootBundleContent {
public static Map<Item, Integer> getItems() {
Map<Item, Integer> items = new HashMap<>();
items.put(Items.BLAZE_POWDER, 5);
items.put(Items.BLAZE_ROD, 3);
return items;
}
}
Changes
- Technical Changes



