Is your feature request related to a problem?
In InventoryView, there's no Component setter for the inventory title, and it still uses the (I assume) legacy method of setTitle(String) rather than title(Component).
Describe the solution you'd like.
Preferably something like this!
for (HumanEntity viewer : inventory.getViewers()) {
InventoryView view = viewer.getOpenInventory();
TextComponent title = Component.text("My Inventory Title");
view.title(title);
}
Describe alternatives you've considered.
There isn't exactly any alternatives to my knowledge unless I'm missing something
Other
No response
Is your feature request related to a problem?
In
InventoryView, there's no Component setter for the inventory title, and it still uses the (I assume) legacy method ofsetTitle(String)rather thantitle(Component).Describe the solution you'd like.
Preferably something like this!
Describe alternatives you've considered.
There isn't exactly any alternatives to my knowledge unless I'm missing something
Other
No response