Added a config option to entirely disable server side cui.

This commit is contained in:
Matthew Miller
2018-08-18 19:42:45 +10:00
parent 0cbfc9308e
commit eba91cac5f
7 changed files with 13 additions and 0 deletions

View File

@ -114,6 +114,7 @@ public class PropertiesConfiguration extends LocalConfiguration {
butcherDefaultRadius = getInt("butcher-default-radius", butcherDefaultRadius);
butcherMaxRadius = getInt("butcher-max-radius", butcherMaxRadius);
allowSymlinks = getBool("allow-symbolic-links", allowSymlinks);
serverSideCUI = getBool("server-side-cui", serverSideCUI);
LocalSession.MAX_HISTORY_SIZE = Math.max(15, getInt("history-size", 15));