remove a debug line

This commit is contained in:
xsmeths 2024-04-15 00:09:42 +01:00
parent ea3445280e
commit 2a74183821
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ public class VoucherMenu extends IconInv {
ItemStack voucherr = voucher.toItemStack();
ItemMeta vouchermeta = voucherr.getItemMeta();
vouchermeta.setDisplayName(voucher.getName());
Bukkit.broadcastMessage(voucher.getName());
voucherr.setItemMeta(vouchermeta);
addIcon(getInventory().firstEmpty(), voucherr, event -> new OptionMenu(instance, voucher).open(event.getPlayer()));
}