Merge branch 'development'

This commit is contained in:
Brianna 2019-10-15 11:42:16 -04:00
commit 05bf1bd04e
2 changed files with 9 additions and 1 deletions

View File

@ -4,7 +4,7 @@ stages:
variables:
name: "UltimateStacker"
path: "/builds/$CI_PROJECT_PATH"
version: "1.10.15"
version: "1.10.16"
build:
stage: build

View File

@ -738,6 +738,14 @@ public class LootablesManager {
.setMaterial(Material.NETHER_STAR)
.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();
}