Create allow-bulk-buy-sell config option. Resolves #765.

This commit is contained in:
Ali Moghnieh 2016-07-26 12:25:20 +01:00
parent a76b20f1b5
commit f1d9cda5eb
No known key found for this signature in database
GPG key ID: F09D3A1BAF2E6D70
5 changed files with 13 additions and 2 deletions

View file

@ -1359,4 +1359,9 @@ public class Settings implements net.ess3.api.ISettings {
public boolean isPastebinCreateKit() {
return config.getBoolean("pastebin-createkit", true);
}
@Override
public boolean isAllowBulkBuySell() {
return config.getBoolean("allow-bulk-buy-sell", false);
}
}