This commit is contained in:
ImproperIssues
2023-04-23 03:01:11 -07:00
parent 8c2f2b2e29
commit eb9aaf13cf

View File

@@ -21,7 +21,7 @@ public abstract class ShulkerUtils {
public static Inventory getOf(ItemStack item, ShulkerBox box) { public static Inventory getOf(ItemStack item, ShulkerBox box) {
final String display = ItemUtils.getDisplay(item); final String display = ItemUtils.getDisplay(item);
final Inventory inv = Bukkit.createInventory(null, box.getInventory().getSize(), Text.color("&7Viewing " + display)); final Inventory inv = Bukkit.createInventory(null, box.getInventory().getSize(), Text.color("&7Viewing&r " + display));
inv.setContents(box.getInventory().getContents()); inv.setContents(box.getInventory().getContents());
return inv; return inv;