SPIGOT-4872: LootTables missing a few loot tables

This commit is contained in:
md_5 2019-05-06 08:40:15 +10:00
parent 40484a5fa0
commit 0d76f8658d
2 changed files with 15 additions and 2 deletions

View file

@ -66,9 +66,9 @@ will help to ensure the PR can be easily maintained over time and encourage the
* There needs to be a new line at the end of every file.
* Imports should be organised in a logical manner.
* Do not group packages unless already grouped.
* Do not group packages
* All new imports should be within existing CraftBukkit comments if any are present. If not, make them.
* __Absolutely no wildcard imports.__
* __Absolutely no wildcard imports outside of tests.__
* If you only use an import once, don't import it. Use the fully qualified name.
Any questions about these requirements can be asked in #spigot-dev in IRC.

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);
}
}
}