From e1d6980c0bb70582baad90c7ff6469131de91457 Mon Sep 17 00:00:00 2001 From: William Cody Ardoin Date: Fri, 9 Feb 2018 18:50:56 -0600 Subject: [PATCH] Add the MAP Varible (#903) The MAP Var was added to startup config but never to the user config options. --- .../source-engine/egg-custom-source-engine-game.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/database/seeds/eggs/source-engine/egg-custom-source-engine-game.json b/database/seeds/eggs/source-engine/egg-custom-source-engine-game.json index a09109b4e..7a7b40bd0 100644 --- a/database/seeds/eggs/source-engine/egg-custom-source-engine-game.json +++ b/database/seeds/eggs/source-engine/egg-custom-source-engine-game.json @@ -40,6 +40,15 @@ "user_viewable": 1, "user_editable": 0, "rules": "required|alpha_dash|between:1,100" + }, + { + "name": "Map", + "description": "The default map for the server.", + "env_variable": "SRCDS_MAP", + "default_value": "", + "user_viewable": 1, + "user_editable": 1, + "rules": "required|string|alpha_dash" } ] }