mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-04 02:53:43 +01:00 
			
		
		
		
	Readability
This commit is contained in:
		@@ -313,7 +313,16 @@ public class PlayerData {
 | 
				
			|||||||
        if (this == o) return true;
 | 
					        if (this == o) return true;
 | 
				
			||||||
        if (o == null || getClass() != o.getClass()) return false;
 | 
					        if (o == null || getClass() != o.getClass()) return false;
 | 
				
			||||||
        PlayerData that = (PlayerData) o;
 | 
					        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
 | 
					    @Override
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user