restores the /images and /sounds folders to the three related config folders for title screen, title music, and jukeboxes. (#43836)

Updates readme files as needed.
Updates file reading mechanisms as needed.
This commit is contained in:
Incoming5643
2019-05-11 19:09:50 -04:00
committed by oranges
parent 3a3b036bbd
commit bf6206d9cf
9 changed files with 54 additions and 53 deletions

View File

@@ -93,6 +93,8 @@ SUBSYSTEM_DEF(ticker)
if((use_rare_music && L[1] == "rare") || (L[1] == SSmapping.config.map_name))
music += S
if(1) //sound.ogg -- common sound
if(L[1] == "exclude")
continue
music += S
var/old_login_music = trim(file2text("data/last_round_lobby_music.txt"))

View File

@@ -25,7 +25,7 @@ SUBSYSTEM_DEF(title)
SSmapping.HACK_LoadMapConfig()
for(var/S in provisional_title_screens)
var/list/L = splittext(S,"+")
if((L.len == 1 && L[1] != "blank.png")|| (L.len > 1 && ((use_rare_screens && lowertext(L[1]) == "rare") || (lowertext(L[1]) == lowertext(SSmapping.config.map_name)))))
if((L.len > 1 && ((use_rare_screens && lowertext(L[1]) == "rare") || (lowertext(L[1]) == lowertext(SSmapping.config.map_name)))))
title_screens += S
if(length(title_screens))