Implements getDebug and setDebug
This commit is contained in:
parent
16bd435ece
commit
9a751bcd3a
@ -188,6 +188,16 @@ public class SimplyAPI implements PermsConfig {
|
||||
plugin.config.setDefaultGroup(group);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean getDebug() {
|
||||
return plugin.config.getDebug();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDebug(boolean debug) {
|
||||
plugin.config.setDebug(debug);
|
||||
}
|
||||
|
||||
public void refreshPermissions() {
|
||||
plugin.refreshPermissions();
|
||||
}
|
||||
|
@ -291,4 +291,14 @@ public class ConfigFile implements PermsConfig {
|
||||
plugin.getConfig().set("default", group);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean getDebug() {
|
||||
return plugin.getConfig().getBoolean("debug", false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDebug(boolean debug) {
|
||||
plugin.getConfig().set("debug", debug);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -424,4 +424,14 @@ public class ConfigSQL implements PermsConfig {
|
||||
config.setDefaultGroup(group);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean getDebug() {
|
||||
return config.getDebug();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDebug(boolean debug) {
|
||||
config.setDebug(debug);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -75,4 +75,8 @@ public interface PermsConfig {
|
||||
|
||||
public void setDefaultGroup(String group);
|
||||
|
||||
public boolean getDebug();
|
||||
|
||||
public void setDebug(boolean debug);
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user