From 578d347b40c0f66ee4d3332cf801945403569606 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Sat, 1 Apr 2017 18:46:23 -0400 Subject: [PATCH] Edits to the titlescreen sync with SS --- code/controllers/subsystem/title_screen.dm | 8 ++++++++ code/game/turfs/closed.dm | 7 +++++++ 2 files changed, 15 insertions(+) diff --git a/code/controllers/subsystem/title_screen.dm b/code/controllers/subsystem/title_screen.dm index 6dd4c145d72..280c1e6fedc 100644 --- a/code/controllers/subsystem/title_screen.dm +++ b/code/controllers/subsystem/title_screen.dm @@ -43,6 +43,14 @@ var/datum/controller/subsystem/title/SStitle if(splash_turf) splash_turf.icon = icon +/datum/controller/subsystem/title/vv_edit_var(var_name, var_value) + . = ..() + if(.) + switch(var_name) + if("icon") + if(splash_turf) + splash_turf.icon = icon + /datum/controller/subsystem/title/Shutdown() if(file_path) fcopy(file_path, "data/previous_title.dat") diff --git a/code/game/turfs/closed.dm b/code/game/turfs/closed.dm index a59635f1f52..f8cb0d1be3b 100644 --- a/code/game/turfs/closed.dm +++ b/code/game/turfs/closed.dm @@ -39,6 +39,13 @@ icon = SStitle.icon ..() +/turf/closed/indestructible/splashscreen/vv_edit_var(var_name, var_value) + . = ..() + if(.) + switch(var_name) + if("icon") + SStitle.icon = icon + /turf/closed/indestructible/riveted icon = 'icons/turf/walls/riveted.dmi' icon_state = "riveted"