Package net.luckperms.api.event.player
Interface PlayerDataSaveEvent
-
- All Superinterfaces:
LuckPermsEvent
public interface PlayerDataSaveEvent extends LuckPermsEvent
Called when player data is saved to the storage.Data can be saved using
UserManager.savePlayerData(UUID, String).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NonNull PlayerSaveResultgetResult()Gets the result of the operation.@NonNull UUIDgetUniqueId()Gets the unique ID that was saved.@NonNull StringgetUsername()Gets the username that was saved.-
Methods inherited from interface net.luckperms.api.event.LuckPermsEvent
getEventType, getLuckPerms
-
-
-
-
Method Detail
-
getResult
@NonNull PlayerSaveResult getResult()
Gets the result of the operation.- Returns:
- the result
-
-