mirror of
https://github.com/HibiscusMC/HMCCosmetics.git
synced 2025-12-26 18:39:07 +00:00
Fixed placeholders not appearing on items in GUI menu
This commit is contained in:
@@ -82,7 +82,11 @@ public class DyeSelectorGui extends CosmeticGui {
|
||||
if (itemStack == null || guiItem.isEmpty()) continue;
|
||||
|
||||
guiItem.setItemStack(
|
||||
ItemBuilder.from(itemStack.clone()).papiPlaceholders(player).build()
|
||||
ItemBuilder.from(
|
||||
this.applyPlaceholders(
|
||||
user, player, guiItem, true
|
||||
)
|
||||
).build()
|
||||
);
|
||||
|
||||
gui.setItem(entry.getKey(), guiItem);
|
||||
|
||||
Reference in New Issue
Block a user