Fix: getOpenInventory

This commit is contained in:
2024-12-01 20:13:12 +01:00
parent bf21d7ee90
commit a009c841b1
4 changed files with 17 additions and 2 deletions
@@ -22,6 +22,7 @@ package de.steamwar.core;
import org.bukkit.Material;
import org.bukkit.enchantments.Enchantment;
import org.bukkit.entity.EntityType;
import org.bukkit.inventory.Inventory;
import org.bukkit.inventory.InventoryView;
public class TrickyTrialsWrapper8 implements TrickyTrialsWrapper {
@@ -44,4 +45,9 @@ public class TrickyTrialsWrapper8 implements TrickyTrialsWrapper {
public String getInventoryTitle(InventoryView view) {
return view.getTitle();
}
@Override
public Inventory getTopInventory(InventoryView view) {
return view.getTopInventory();
}
}