SPIGOT-4872: LootTables missing a few loot tables

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2019-05-06 08:40:15 +10:00
parent 55f1b1bec1
commit 1915b49ec3
2 changed files with 15 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
package org.bukkit;
import net.minecraft.server.MinecraftKey;
import org.bukkit.craftbukkit.util.CraftNamespacedKey;
import org.bukkit.loot.LootTable;
import org.bukkit.loot.LootTables;
import org.bukkit.support.AbstractTestingBase;
@@ -19,4 +21,15 @@ public class LootTablesTest extends AbstractTestingBase {
Assert.assertEquals(lootTable.getKey(), table.getKey());
}
}
@Test
public void testNMS() {
for (MinecraftKey key : net.minecraft.server.LootTables.a()) {
NamespacedKey bukkitKey = CraftNamespacedKey.fromMinecraft(key);
LootTables lootTable = Registry.LOOT_TABLES.get(bukkitKey);
Assert.assertNotNull("Unknown LootTable " + key, lootTable);
Assert.assertEquals(lootTable.getKey(), bukkitKey);
}
}
}