Hello,
I'm trying to set up DeluxeMenus to display different items based on player permissions, but the conditions are not working as expected.
DeluxeMenus version: 1.14.1
Minecraft version: 1.21.6
Vault and LuckPerms are installed (Vault is the latest version)
My conditions are set as follows (excerpt):
conditions:
test_unlocked:
type: has_permission
permission: test
test_locked:
type: has_permission
permission: test
negate: true
items:
test_locked:
condition:
- test_locked
material: yellow_stained_glass_pane
display_name: "Not acquired"
slot: 1
test_unlocked:
condition:
- test_unlocked
material: stonecutter
display_name: "Acquired"
slot: 0
Even though I set the permission correctly in LuckPerms, both the locked and unlocked items are displayed simultaneously, regardless of whether the player has the permission or not.
Vault and LuckPerms appear to be working fine, but the permission check in DeluxeMenus is not functioning properly.
I also tried conditions using tag:test and not_tag:test, but those didn't work correctly either.
Could you please help me identify possible causes or configuration mistakes that I might have overlooked?
Thank you in advance.