Debugging is important to me, load the old debugging value.

This commit is contained in:
graywolf336
2014-03-14 15:35:50 -05:00
parent b2a8e6c89c
commit 737a7e35e2
2 changed files with 8 additions and 0 deletions

View File

@ -207,6 +207,11 @@ public class JailMain extends JavaPlugin {
return this.sbm;
}
/** Sets whether the plugin is in debugging or not. */
public void setDebugging(boolean debug) {
this.debug = debug;
}
/** Returns if the plugin is in debug state or not. */
public boolean inDebug() {
return this.debug;