mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 14:16:45 +01:00
Readability
This commit is contained in:
parent
788e7e433b
commit
1de9c2610b
@ -313,7 +313,16 @@ public class PlayerData {
|
||||
if (this == o) return true;
|
||||
if (o == null || getClass() != o.getClass()) return false;
|
||||
PlayerData that = (PlayerData) o;
|
||||
return lastLogin == that.lastLogin && partyChatSpying == that.partyChatSpying && leaderBoardExclusion == that.leaderBoardExclusion && scoreboardTipsShown == that.scoreboardTipsShown && Objects.equal(playerName, that.playerName) && Objects.equal(playerUUID, that.playerUUID) && Objects.equal(skillLevelValues, that.skillLevelValues) && Objects.equal(skillExperienceValues, that.skillExperienceValues) && Objects.equal(abilityDeactivationTimestamps, that.abilityDeactivationTimestamps) && Objects.equal(uniquePlayerData, that.uniquePlayerData) && Objects.equal(barStateMap, that.barStateMap);
|
||||
return lastLogin == that.lastLogin
|
||||
&& partyChatSpying == that.partyChatSpying
|
||||
&& leaderBoardExclusion == that.leaderBoardExclusion
|
||||
&& scoreboardTipsShown == that.scoreboardTipsShown
|
||||
&& Objects.equal(playerName, that.playerName)
|
||||
&& Objects.equal(playerUUID, that.playerUUID)
|
||||
&& Objects.equal(skillLevelValues, that.skillLevelValues)
|
||||
&& Objects.equal(skillExperienceValues, that.skillExperienceValues)
|
||||
&& Objects.equal(abilityDeactivationTimestamps, that.abilityDeactivationTimestamps)
|
||||
&& Objects.equal(uniquePlayerData, that.uniquePlayerData) && Objects.equal(barStateMap, that.barStateMap);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user