Merge remote-tracking branch 'refs/remotes/origin/master' into custom_roundstart_items

# Conflicts:
#	code/controllers/configuration.dm
#	code/game/objects/items.dm
This commit is contained in:
kevinz000
2017-05-21 18:17:42 -07:00
571 changed files with 74297 additions and 79090 deletions
+11 -8
View File
@@ -162,8 +162,8 @@
var/alert_desc_red_downto = "The station's destruction has been averted. There is still however an immediate serious threat to the station. Security may have weapons unholstered at all times, random searches are allowed and advised."
var/alert_desc_delta = "Destruction of the station is imminent. All crew are instructed to obey all instructions given by heads of staff. Any violations of these orders can be punished by death. This is not a drill."
var/revival_pod_plants = 1
var/revival_cloning = 1
var/revival_pod_plants = FALSE
var/revival_cloning = FALSE
var/revival_brain_life = -1
var/rename_cyborg = 0
@@ -259,6 +259,8 @@
var/arrivals_shuttle_dock_window = 55 //Time from when a player late joins on the arrivals shuttle to when the shuttle docks on the station
var/arrivals_shuttle_require_safe_latejoin = FALSE //Require the arrivals shuttle to be operational in order for latejoiners to join
var/mice_roundstart = 10 // how many wire chewing rodents spawn at roundstart.
/datum/configuration/New()
gamemode_cache = typecacheof(/datum/game_mode,TRUE)
for(var/T in gamemode_cache)
@@ -278,7 +280,6 @@
votable_modes += "secret"
Reload()
reload_custom_roundstart_items_list()
/datum/configuration/proc/Reload()
load("config/config.txt")
@@ -543,9 +544,9 @@
if("damage_multiplier")
damage_multiplier = text2num(value)
if("revival_pod_plants")
revival_pod_plants = text2num(value)
revival_pod_plants = TRUE
if("revival_cloning")
revival_cloning = text2num(value)
revival_cloning = TRUE
if("revival_brain_life")
revival_brain_life = text2num(value)
if("rename_cyborg")
@@ -765,13 +766,15 @@
if("arrivals_shuttle_dock_window")
arrivals_shuttle_dock_window = max(PARALLAX_LOOP_TIME, text2num(value))
if("arrivals_shuttle_require_safe_latejoin")
arrivals_shuttle_require_safe_latejoin = text2num(value)
arrivals_shuttle_require_safe_latejoin = TRUE
if("mice_roundstart")
mice_roundstart = text2num(value)
if ("mentor_mobname_only")
mentors_mobname_only = 1
if ("mentor_legacy_system")
mentor_legacy_system = 1
// else
// GLOB.config_error_log << "Adding game mode [M.name] ([M.config_tag]) to configuration."
else
GLOB.config_error_log << "Unknown setting in configuration: '[name]'"
fps = round(fps)
if(fps <= 0)