mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-26 19:07:40 +01:00
Player metadata really should be keyed by UUID not name
This commit is contained in:
parent
ca6d2cf9dc
commit
57ab4cfc6f
@ -10,7 +10,7 @@ import org.bukkit.metadata.MetadataStoreBase;
|
||||
public class PlayerMetadataStore extends MetadataStoreBase<OfflinePlayer> implements MetadataStore<OfflinePlayer> {
|
||||
/**
|
||||
* Generates a unique metadata key for {@link org.bukkit.entity.Player} and {@link OfflinePlayer} using the player
|
||||
* name.
|
||||
* UUID.
|
||||
* @see MetadataStoreBase#disambiguate(Object, String)
|
||||
* @param player the player
|
||||
* @param metadataKey The name identifying the metadata value
|
||||
@ -18,6 +18,6 @@ public class PlayerMetadataStore extends MetadataStoreBase<OfflinePlayer> implem
|
||||
*/
|
||||
@Override
|
||||
protected String disambiguate(OfflinePlayer player, String metadataKey) {
|
||||
return player.getName().toLowerCase(java.util.Locale.ENGLISH) + ":" + metadataKey;
|
||||
return player.getUniqueId() + ":" + metadataKey;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user