mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-11 14:05:35 +00:00
No one in their right mind is going to change the defaults for these anyway. All this crap does is overwhelm users with stuff they don't understand. Most of this stuff has no business being modified by non-developers anyway.
113 lines
5.5 KiB
PHP
113 lines
5.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
*
|
|
* ____ _ _ __ __ _ __ __ ____
|
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* @author PocketMine Team
|
|
* @link http://www.pocketmine.net/
|
|
*
|
|
*
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace pocketmine;
|
|
|
|
/**
|
|
* @internal
|
|
* Constants for all properties available in pocketmine.yml.
|
|
* This is generated by build/generate-pocketmine-yml-property-consts.php.
|
|
* Do not edit this file manually.
|
|
*/
|
|
final class YmlServerProperties{
|
|
|
|
private function __construct(){
|
|
//NOOP
|
|
}
|
|
|
|
public const ALIASES = 'aliases';
|
|
public const ANONYMOUS_STATISTICS = 'anonymous-statistics';
|
|
public const ANONYMOUS_STATISTICS_ENABLED = 'anonymous-statistics.enabled';
|
|
public const ANONYMOUS_STATISTICS_HOST = 'anonymous-statistics.host';
|
|
public const AUTO_REPORT = 'auto-report';
|
|
public const AUTO_REPORT_ENABLED = 'auto-report.enabled';
|
|
public const AUTO_REPORT_HOST = 'auto-report.host';
|
|
public const AUTO_REPORT_SEND_CODE = 'auto-report.send-code';
|
|
public const AUTO_REPORT_SEND_PHPINFO = 'auto-report.send-phpinfo';
|
|
public const AUTO_REPORT_SEND_SETTINGS = 'auto-report.send-settings';
|
|
public const AUTO_REPORT_USE_HTTPS = 'auto-report.use-https';
|
|
public const AUTO_UPDATER = 'auto-updater';
|
|
public const AUTO_UPDATER_ENABLED = 'auto-updater.enabled';
|
|
public const AUTO_UPDATER_HOST = 'auto-updater.host';
|
|
public const AUTO_UPDATER_ON_UPDATE = 'auto-updater.on-update';
|
|
public const AUTO_UPDATER_ON_UPDATE_WARN_CONSOLE = 'auto-updater.on-update.warn-console';
|
|
public const AUTO_UPDATER_PREFERRED_CHANNEL = 'auto-updater.preferred-channel';
|
|
public const AUTO_UPDATER_SUGGEST_CHANNELS = 'auto-updater.suggest-channels';
|
|
public const CHUNK_GENERATION = 'chunk-generation';
|
|
public const CHUNK_GENERATION_POPULATION_QUEUE_SIZE = 'chunk-generation.population-queue-size';
|
|
public const CHUNK_SENDING = 'chunk-sending';
|
|
public const CHUNK_SENDING_PER_TICK = 'chunk-sending.per-tick';
|
|
public const CHUNK_SENDING_SPAWN_RADIUS = 'chunk-sending.spawn-radius';
|
|
public const CHUNK_TICKING = 'chunk-ticking';
|
|
public const CHUNK_TICKING_BLOCKS_PER_SUBCHUNK_PER_TICK = 'chunk-ticking.blocks-per-subchunk-per-tick';
|
|
public const CHUNK_TICKING_DISABLE_BLOCK_TICKING = 'chunk-ticking.disable-block-ticking';
|
|
public const CHUNK_TICKING_TICK_RADIUS = 'chunk-ticking.tick-radius';
|
|
public const CONSOLE = 'console';
|
|
public const CONSOLE_ENABLE_INPUT = 'console.enable-input';
|
|
public const CONSOLE_TITLE_TICK = 'console.title-tick';
|
|
public const DEBUG = 'debug';
|
|
public const DEBUG_LEVEL = 'debug.level';
|
|
public const LEVEL_SETTINGS = 'level-settings';
|
|
public const LEVEL_SETTINGS_DEFAULT_FORMAT = 'level-settings.default-format';
|
|
public const MEMORY = 'memory';
|
|
public const MEMORY_ASYNC_WORKER_HARD_LIMIT = 'memory.async-worker-hard-limit';
|
|
public const MEMORY_CHECK_RATE = 'memory.check-rate';
|
|
public const MEMORY_CONTINUOUS_TRIGGER = 'memory.continuous-trigger';
|
|
public const MEMORY_CONTINUOUS_TRIGGER_RATE = 'memory.continuous-trigger-rate';
|
|
public const MEMORY_GARBAGE_COLLECTION = 'memory.garbage-collection';
|
|
public const MEMORY_GARBAGE_COLLECTION_PERIOD = 'memory.garbage-collection.period';
|
|
public const MEMORY_GLOBAL_LIMIT = 'memory.global-limit';
|
|
public const MEMORY_MAIN_HARD_LIMIT = 'memory.main-hard-limit';
|
|
public const MEMORY_MAIN_LIMIT = 'memory.main-limit';
|
|
public const MEMORY_MAX_CHUNKS = 'memory.max-chunks';
|
|
public const MEMORY_MAX_CHUNKS_CHUNK_RADIUS = 'memory.max-chunks.chunk-radius';
|
|
public const MEMORY_MEMORY_DUMP = 'memory.memory-dump';
|
|
public const MEMORY_MEMORY_DUMP_DUMP_ASYNC_WORKER = 'memory.memory-dump.dump-async-worker';
|
|
public const NETWORK = 'network';
|
|
public const NETWORK_ASYNC_COMPRESSION = 'network.async-compression';
|
|
public const NETWORK_ASYNC_COMPRESSION_THRESHOLD = 'network.async-compression-threshold';
|
|
public const NETWORK_BATCH_THRESHOLD = 'network.batch-threshold';
|
|
public const NETWORK_COMPRESSION_LEVEL = 'network.compression-level';
|
|
public const NETWORK_ENABLE_ENCRYPTION = 'network.enable-encryption';
|
|
public const NETWORK_MAX_MTU_SIZE = 'network.max-mtu-size';
|
|
public const NETWORK_UPNP_FORWARDING = 'network.upnp-forwarding';
|
|
public const PLAYER = 'player';
|
|
public const PLAYER_SAVE_PLAYER_DATA = 'player.save-player-data';
|
|
public const PLAYER_VERIFY_XUID = 'player.verify-xuid';
|
|
public const PLUGINS = 'plugins';
|
|
public const PLUGINS_LEGACY_DATA_DIR = 'plugins.legacy-data-dir';
|
|
public const SETTINGS = 'settings';
|
|
public const SETTINGS_ASYNC_WORKERS = 'settings.async-workers';
|
|
public const SETTINGS_ENABLE_DEV_BUILDS = 'settings.enable-dev-builds';
|
|
public const SETTINGS_ENABLE_PROFILING = 'settings.enable-profiling';
|
|
public const SETTINGS_FORCE_LANGUAGE = 'settings.force-language';
|
|
public const SETTINGS_PROFILE_REPORT_TRIGGER = 'settings.profile-report-trigger';
|
|
public const SETTINGS_QUERY_PLUGINS = 'settings.query-plugins';
|
|
public const SETTINGS_SHUTDOWN_MESSAGE = 'settings.shutdown-message';
|
|
public const TICKS_PER = 'ticks-per';
|
|
public const TICKS_PER_AUTOSAVE = 'ticks-per.autosave';
|
|
public const TIMINGS = 'timings';
|
|
public const TIMINGS_HOST = 'timings.host';
|
|
public const WORLDS = 'worlds';
|
|
}
|