Implement drop-items-if-full for /give command (default false)

This commit is contained in:
vemacs 2015-06-28 10:28:55 -05:00
parent e33c42e123
commit 306aab0d8d
4 changed files with 19 additions and 1 deletions

View file

@ -1106,6 +1106,11 @@ public class Settings implements net.ess3.api.ISettings {
return config.getBoolean("notify-no-new-mail", true);
}
@Override
public boolean isDropItemsIfFull() {
return config.getBoolean("drop-items-if-full", false);
}
// #easteregg
@Override
public int getMaxUserCacheCount() {