Advertisement
CoolLord22

Untitled

Apr 14th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. verbosity = getConfigVerbosity(globalConfig);
  2. enableBlockTo = globalConfig.getBoolean("enableblockto", false);
  3. moneyPrecision = globalConfig.getInt("money-precision", 2);
  4. customDropsForExplosions = globalConfig.getBoolean("customdropsforexplosions", false);
  5. defaultDropSpread = globalConfig.getBoolean("default_dropspread", true);
  6. disableXpOnNonDefault = globalConfig.getBoolean("disable_xp_on_non_default", true);
  7. enchantmentsIgnoreLevel = globalConfig.getBoolean("enchantments_ignore_level", false);
  8. enchantmentsUseUnsafe = globalConfig.getBoolean("enchantments_use_unsafe", false);
  9. enchantmentsRestrictMatching = globalConfig.getBoolean("enchantments_restrict_matching", true);
  10.  
  11. configKeysGetDeep = globalConfig.getBoolean("config_keys_get_deep", true);
  12.  
  13. spawnTriggerIgnoreOtherDropsSpawn = globalConfig.getBoolean("spawntrigger_ignores_otherdrops_spawn", true);
  14.  
  15. globalLootOverridesDefault = globalConfig.getBoolean("loot_overrides_default", true);
  16. globalMoneyOverridesDefault = globalConfig.getBoolean("money_overrides_default", false);
  17. globalXpOverridesDefault = globalConfig.getBoolean("xp_overrides_default", false);
  18.  
  19. matchMobByNameOnly = globalConfig.getBoolean("match_mob_by_name_only", true);
  20.  
  21. exportEnumLists = globalConfig.getBoolean("export_enum_lists", true);
  22. globalAllowAnyReplacementBlock = globalConfig.getBoolean("allow_any_replacementblock", false);
  23. globalRedstonewireTriggersSurrounding = globalConfig.getBoolean("redstonewire_triggers_surrounding", true);
  24. globalUpdateChecking = globalConfig.getBoolean("update_checker", true);
  25. globalDisableMetrics = globalConfig.getBoolean("disable_metrics", false);
  26. primedTNTEnabled = globalConfig.getBoolean("primed_tnt", false);
  27. globalOverrideExplosionCap = globalConfig.getBoolean("override_explosion_cap", false);
  28. globalCustomSpawnLimit = globalConfig.getInt("custom_spawn_limit", 150);
  29.  
  30. gTimeFormat = globalConfig.getString("time_format", "HH:mm:ss");
  31. gDateFormat = globalConfig.getString("date_format", "yyyy/MM/dd");
  32.  
  33. gColorLogMessages = globalConfig.getBoolean("color_log_messages", true);
  34. gActionRadius = globalConfig.getInt("action_radius", 10);
  35. gcustomBlockBreakToMcmmo = globalConfig.getBoolean("send_customblockbreak_to_mcmmo", true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement