Co-authored-by: DreamySkrell <>
This commit is contained in:
DreamySkrell
2024-01-30 10:54:13 +00:00
committed by GitHub
co-authored by DreamySkrell <>
parent ade6ebcc08
commit 65893dc74c
4 changed files with 74 additions and 6 deletions
+3 -3
View File
@@ -763,9 +763,9 @@ var/datum/controller/subsystem/ticker/SSticker
var/list/ship_names = list()
for(var/datum/map_template/ruin/site in sites)
if(site.ship_cost)
ship_names += site.name
ship_names += "[site.name] ([site.spawn_weight])"
else
site_names += site.name
site_names += "[site.name] ([site.spawn_weight])"
var/datum/browser/sites_win = new(
usr,
@@ -773,7 +773,7 @@ var/datum/controller/subsystem/ticker/SSticker
"Sector: " + current_sector.name,
500, 500,
)
var/html = "<h1>Ships and sites that spawn in this sector:</h1>"
var/html = "<h1>Ships and sites that spawn in this sector, with their spawn weights:</h1>"
html += "<h3>Ships:</h3>"
html += english_list(ship_names)
html += "<h3>Sites:</h3>"