diff --git a/Content.Shared/CCVar/CCVars.Misc.cs b/Content.Shared/CCVar/CCVars.Misc.cs index 2651bd6899..3d597c7427 100644 --- a/Content.Shared/CCVar/CCVars.Misc.cs +++ b/Content.Shared/CCVar/CCVars.Misc.cs @@ -12,7 +12,7 @@ public sealed partial class CCVars /// Should we pre-load all of the procgen atlasses. /// public static readonly CVarDef ProcgenPreload = - CVarDef.Create("procgen.preload", false, CVar.SERVERONLY); //CP14 false by default + CVarDef.Create("procgen.preload", true, CVar.SERVERONLY); /// /// Enabled: Cloning has 70% cost and reclaimer will refuse to reclaim corpses with souls. (For LRP). @@ -84,7 +84,7 @@ public sealed partial class CCVars CVarDef.Create("entgc.maximum_time_ms", 5, CVar.SERVERONLY); public static readonly CVarDef GatewayGeneratorEnabled = - CVarDef.Create("gateway.generator_enabled", false); //CP14 false by default + CVarDef.Create("gateway.generator_enabled", true); public static readonly CVarDef TippyEntity = CVarDef.Create("tippy.entity", "Tippy", CVar.SERVER | CVar.REPLICATED); diff --git a/Content.Shared/CCVar/CCVars.Shuttle.cs b/Content.Shared/CCVar/CCVars.Shuttle.cs index 93dcbe4592..3c5642ef49 100644 --- a/Content.Shared/CCVar/CCVars.Shuttle.cs +++ b/Content.Shared/CCVar/CCVars.Shuttle.cs @@ -29,7 +29,7 @@ public sealed partial class CCVars /// Whether the arrivals shuttle is enabled. /// public static readonly CVarDef ArrivalsShuttles = - CVarDef.Create("shuttle.arrivals", false, CVar.SERVERONLY); //CP14 arrivals disabled + CVarDef.Create("shuttle.arrivals", true, CVar.SERVERONLY); /// /// The map to use for the arrivals station. diff --git a/Content.Shared/CCVar/CCVars.Tips.cs b/Content.Shared/CCVar/CCVars.Tips.cs index f0d286ae1f..61e6342061 100644 --- a/Content.Shared/CCVar/CCVars.Tips.cs +++ b/Content.Shared/CCVar/CCVars.Tips.cs @@ -14,7 +14,7 @@ public sealed partial class CCVars /// The dataset prototype to use when selecting a random tip. /// public static readonly CVarDef TipsDataset = - CVarDef.Create("tips.dataset", "CP14Tips"); + CVarDef.Create("tips.dataset", "Tips"); /// /// The number of seconds between each tip being displayed when the round is not actively going diff --git a/Resources/ConfigPresets/_CP14/Dev.toml b/Resources/ConfigPresets/_CP14/Dev.toml index d466caa5f5..d35100ff19 100644 --- a/Resources/ConfigPresets/_CP14/Dev.toml +++ b/Resources/ConfigPresets/_CP14/Dev.toml @@ -13,39 +13,41 @@ port = 1212 bindto = "::,0.0.0.0" max_connections = 100 -[status] -# The status ser ver is the TCP side, used by the launcher to determine engine version, etc. -# To be clear: Disabling it makes the launcher unable to connect! -enabled = true - [game] hostname = "⚔️ CrystallEdge Alpha ⚔️ " -desc = "History of the City of Sword and Magic. A social economic sandbox reinventing the Space Station 14 concept in> +desc = "History of the City of Sword and Magic. A social economic sandbox reinventing the Space Station 14 concept in" lobbyenabled = true soft_max_players = 40 [server] rules_file = "CP14SandboxRU" -[console] -# If this is true, people connecting from this machine (loopback) -# will automatically be elevated to full admin privileges. -# This literally works by checking if address == 127.0.0.1 || address == ::1 -loginlocal = true - [hub] -# Set to true to show this server on the public server list -# Before enabling this, read: https://docs.spacestation14.io/hosts/hub-rules advertise = true -# Comma-separated list of tags, useful for categorizing your server. -# See https://docs.spacestation14.io/hosts/hub-rules for more details on this when it becomes relevant. tags = "lang:ru, lang:en, rp:med, region:eu_e" -# URL of your server. Fill this in if you have a domain name, -# want to use HTTPS (with a reverse proxy), or other advanced scenarios. -# Must be in the form of an ss14:// or ss14s:// URI pointing to the status API. server_url = "" -# Comma-separated list of URLs of hub servers to advertise to. hub_urls = "https://hub.spacestation14.com/" [infolinks] -discord = "https://discord.gg/8BEPa9JbZ6" \ No newline at end of file +discord = "https://discord.gg/8BEPa9JbZ6" + +[procgen] +preload = false + +[gateway] +generator_enabled = false + +[shuttle] +arrivals = false +arrivals_planet = false +preload_grids = false +auto_call_time = 0 + +[admin] +deadmin_on_join = true + +[ic] +flavor_text = true + +[tips] +dataset = "CP14Tips" \ No newline at end of file