mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-12 13:54:16 +01:00
Fix string compares
This commit is contained in:
parent
4ac5551c6b
commit
269947bdae
@ -121,7 +121,7 @@ public class User extends DataUnit implements Cloneable {
|
||||
String defaultGroupName = getDataSource().getDefaultGroup().getName();
|
||||
// if we are not in the default group
|
||||
// or we are in the default group and the move is to a different group.
|
||||
boolean notify = (this.group != defaultGroupName) || ((this.group == defaultGroupName) && (group.getName() != defaultGroupName)) ;
|
||||
boolean notify = (!this.group.equalsIgnoreCase(defaultGroupName)) || ((this.group.equalsIgnoreCase(defaultGroupName)) && (!group.getName().equalsIgnoreCase(defaultGroupName))) ;
|
||||
this.group = group.getName();
|
||||
flagAsChanged();
|
||||
if (GroupManager.isLoaded()) {
|
||||
|
Loading…
Reference in New Issue
Block a user