From 2570184ba11768198f2f574a1b465b77212897ce Mon Sep 17 00:00:00 2001 From: Aikar Date: Wed, 4 May 2016 20:33:16 -0400 Subject: [PATCH] Implement getNMSWorld on EntityMinecartContainer Was missed because the class is abstract and nothing implementing the class was imported in Paper --- .../LootTable-API-Replenishable-Lootables-Feature.patch | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Spigot-Server-Patches/LootTable-API-Replenishable-Lootables-Feature.patch b/Spigot-Server-Patches/LootTable-API-Replenishable-Lootables-Feature.patch index ccb95f4117..a04f5722f5 100644 --- a/Spigot-Server-Patches/LootTable-API-Replenishable-Lootables-Feature.patch +++ b/Spigot-Server-Patches/LootTable-API-Replenishable-Lootables-Feature.patch @@ -483,6 +483,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + return lootableData; + } + ++ @Override ++ public World getNMSWorld() { ++ return this.world; ++ } ++ + public String getLootTableName() { + final MinecraftKey key = getLootTableKey(); + return key != null ? key.toString() : null;