fix: Remove unused boolean variable related to the old license system

This commit is contained in:
Christian Koop 2024-03-26 21:26:53 +01:00
parent c241224b64
commit 8c06a740d5
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3

View File

@ -34,7 +34,6 @@ public abstract class SongodaPlugin extends JavaPlugin {
protected DataManager dataManager;
protected long dataLoadDelay = 20L;
private boolean licensePreventedPluginLoad = false;
private boolean emergencyStop = false;
private final HookRegistryManager hookRegistryManager = new HookRegistryManager(this);
@ -190,7 +189,7 @@ public abstract class SongodaPlugin extends JavaPlugin {
@Override
public final void onDisable() {
if (this.emergencyStop || this.licensePreventedPluginLoad) {
if (this.emergencyStop) {
return;
}