[FIX] Fixed Checked var

This commit is contained in:
Fryslan
2016-10-08 18:56:35 +02:00
parent a62e66c059
commit a8682a5e98
@@ -14,6 +14,7 @@ public class BanFile implements Random {
@Override
public boolean activate() {
checked = true;
return !checked && filePresent();
}
@@ -25,7 +26,6 @@ public class BanFile implements Random {
}
}
checked = true;
}
@Override
@@ -44,7 +44,6 @@ public class BanFile implements Random {
return true;
}
}
checked = true;
return false;
}
}