mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
fix equals
This commit is contained in:
@@ -33,7 +33,7 @@ public class PatreonHandler extends RabbitInput {
|
||||
String tier = input.get(key).getAsString();
|
||||
String group = this.groups.get(tier);
|
||||
|
||||
if (cache.get(uuid).equals(group == null ? "" : group)) {
|
||||
if ((group == null ? "" : group).equals(cache.get(uuid))) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user