[trunk] Less spam on command errors by default

Added new debug setting to config.

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1236 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
snowleo 2011-04-16 23:18:00 +00:00
parent da1023975b
commit 468f646e6e
3 changed files with 10 additions and 1 deletions

View file

@ -463,4 +463,9 @@ public class Settings implements IConf
{
return config.getBoolean("nether.use-1to1-ratio", false);
}
public boolean isDebug()
{
return config.getBoolean("debug", false);
}
}