Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion code/game/world.dm
Original file line number Diff line number Diff line change
Expand Up @@ -409,11 +409,32 @@ GLOBAL_VAR_INIT(last_maptick_time, 0)
var/server_name = CONFIG_GET(string/servername)
if (server_name)
new_status += "<b>[server_name]</b> "
// DARKPACK EDIT ADD START
new_status += "(<a href=\"[CONFIG_GET(string/forumurl)]\">Discord</a>)"
if(CONFIG_GET(string/servertagline))
new_status += "<br>[CONFIG_GET(string/servertagline)]<br>"
if(CONFIG_GET(flag/nsfw_content))
features += "18+"
if(CONFIG_GET(flag/usewhitelist))
features += "whitelisted"
// DARKPACK EDIT ADD END
if(CONFIG_GET(flag/allow_respawn))
features += "respawn" // show "respawn" regardless of "respawn as char" or "free respawn"
if(!CONFIG_GET(flag/allow_ai))
features += "AI disabled"
hostedby = CONFIG_GET(string/hostedby)
// DARKPACK EDIT ADD START

var/list/splat_names = list()
for (var/splats_id in get_selectable_splats())
var/splats_type = GLOB.splat_list[splats_id]
var/datum/splat/splats = GLOB.splat_prototypes[splats_type]

splat_names += splats.name
if(splat_names.len)
features += "splats: [jointext(splat_names, ", ")]"
// DARKPACK EDIT ADD END


if (CONFIG_GET(flag/station_name_in_hub_entry))
new_status += " &#8212; <b>[station_name()]</b>"
Expand All @@ -426,7 +447,7 @@ GLOBAL_VAR_INIT(last_maptick_time, 0)
features += "hosted by <b>[hostedby]</b>"

if(length(features))
new_status += ": [jointext(features, ", ")]"
new_status += "[jointext(features, ", ")]" // DARKPACK EDIT CHANGE

if(!SSticker || SSticker?.current_state == GAME_STATE_STARTUP)
new_status += "<br><b>STARTING</b>"
Expand Down
3 changes: 3 additions & 0 deletions config/darkpack_config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ ROLEPLAY_ONLY_MERITS 1
#DIRECTIONAL_COMBAT
SWING_COMBAT

## Server tagline: This will appear right below the server's title.
# SERVERTAGLINE A total conversion project to the WoD setting.

## Configs for passive bloodpool drain, if this is enabled, then the below timer can be adjusted to make vampires and ghouls lose 1 blood point when the timer is up
#PASSIVE_BP_DRAIN
PASSIVE_BP_DRAIN_TIMER 12000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@
// url for the alternate web_sound server. you can safely leave this alone if you want, vampire
/// e.g. https://vampire-freaks.com/api
/datum/config_entry/string/music_server_url // Not an existing override, bite me.

/datum/config_entry/string/servertagline
Loading