Added default empty lootables for Silverfish and villagers.

This commit is contained in:
Brianna 2019-10-15 11:41:46 -04:00
parent fca522e1b1
commit 0ee1d41942

View File

@ -738,6 +738,14 @@ public class LootablesManager {
.setMaterial(Material.NETHER_STAR) .setMaterial(Material.NETHER_STAR)
.setAllowLootingEnchant(false).build())); .setAllowLootingEnchant(false).build()));
// Add Villager.
lootManager.addLootable(new Lootable("VILLAGER",
new LootBuilder().build()));
// Add Silverfish.
lootManager.addLootable(new Lootable("SILVERFISH",
new LootBuilder().build()));
lootManager.saveLootables(); lootManager.saveLootables();
} }