Customizable default (no perms) vault size

This commit is contained in:
CmdrKittens
2020-04-09 00:49:34 -04:00
parent 167189c064
commit 9a8538b844
5 changed files with 26 additions and 9 deletions
@@ -122,6 +122,10 @@ public class Config {
" You should only enable this if you're working with a contributor to fix something.")
private boolean debug = false;
@Comment("Can be 1 through 6.\n" +
"Default: 6")
private int defaultVaultRows = 6;
@Comment("Language\n" +
" This determines which language file the plugin will read from.\n" +
" Valid options are (don't include .yml): bulgarian, dutch, english, german, turkish, russian")
@@ -179,6 +183,10 @@ public class Config {
return this.debug;
}
public int getDefaultVaultRows() {
return this.defaultVaultRows;
}
public String getLanguage() {
return this.language;
}