mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 01:34:12 +00:00
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
//Overwriting /world/New to do all the Fulp-related stuff necessary
|
|
/world/New()
|
|
. = ..()
|
|
|
|
// Load Mentors
|
|
load_mentors()
|
|
|
|
// Call overrides
|
|
call_fulp_overrides()
|
|
|
|
GLOB.special_roles += list(
|
|
ROLE_BLOODSUCKER = 0,
|
|
ROLE_VAMPIRICACCIDENT = 0,
|
|
ROLE_BLOODSUCKERBREAKOUT = 0,
|
|
ROLE_MONSTERHUNTER = 0,
|
|
ROLE_INFILTRATOR = 0,
|
|
)
|
|
|
|
|
|
// DON'T CALL PARENT, we don't want to use TG's update_status here, only ours!
|
|
/world/update_status()
|
|
var/s = ""
|
|
var/server_name = CONFIG_GET(string/servername)
|
|
var/server_caption = CONFIG_GET(string/servercaption)
|
|
s += "<b>[server_name]</b>\] — "
|
|
s += "<b>[server_caption]</b>"
|
|
s += " ("
|
|
s += "<a href=\"[CONFIG_GET(string/discordurl)]\">"
|
|
s += "Discord"
|
|
s += "</a>"
|
|
s += ")<br>"
|
|
|
|
s += "<br>Beginner Friendly: <b>Learn to play SS13!</b>"
|
|
s += "<br>Roleplay: \[<b>Medium</b>\]"
|
|
s += "<br>Time: \[<b>[gameTimestamp("hh:mm")]</b>\]"
|
|
s += "<br>Map: \[<b>[SSmapping.current_map.map_name]</b>"//\] // Since this is the last line, the ] is done automatically for us.
|
|
|
|
status = s
|
|
return s
|