fix(events): handle lowercase UUIDs in events#4829
Open
pedroagrs wants to merge 2 commits intoIntellectualSites:mainfrom
Open
fix(events): handle lowercase UUIDs in events#4829pedroagrs wants to merge 2 commits intoIntellectualSites:mainfrom
pedroagrs wants to merge 2 commits intoIntellectualSites:mainfrom
Conversation
This ensures compatibility with servers using the uuid.force-lowercase flag, as the PlotPlayer abstraction handles UUID normalization correctly.
Member
|
I would wonder if there are more places that this is an issue. Would you mind checking? |
Author
Apologies for the delay. I've double-checked other event listeners and pushed. Everything should be consistent now. |
dordsor21
approved these changes
Feb 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Inconsistency in
PlayerSignOpenEventvalidation on servers with force-lowercase UUIDs.Description
Currently, the PlayerSignOpenEvent listener in
PlayerEventListener1201uses the native bukkit methodPlayer#getUniqueId()to verify if a player is added to a plot.On certain server environments where the
uuid.force-lowercaseflag is enabled, the UUID string representation might mismatch during comparison. This causes the event to fail validation, preventing authorized players from interacting with or editing signs because their UUIDs are not being matched correctly against the plot's member list.Submitter Checklist