mirror of
https://github.com/Suiranoil/SkinRestorer.git
synced 2026-01-16 04:42:12 +00:00
fix invalid isValid logic for ProvidersConfig
This commit is contained in:
@@ -26,9 +26,9 @@ public final class ProvidersConfig {
|
||||
if (this == ProvidersConfig.DEFAULT)
|
||||
return true;
|
||||
|
||||
return this.mojang == null || !this.mojang.isValid()
|
||||
|| this.ely_by == null || !this.ely_by.isValid()
|
||||
|| this.mineskin == null || !this.mineskin.isValid();
|
||||
return (this.mojang != null && this.mojang.isValid())
|
||||
&& (this.ely_by != null && this.ely_by.isValid())
|
||||
&& (this.mineskin != null && this.mineskin.isValid());
|
||||
}
|
||||
|
||||
public void fix() {
|
||||
|
||||
Reference in New Issue
Block a user