Files
3e9e4e7d82 Removes more cases of the round end report telling on people's ckeys (#24094)
* Removes more cases of the round end report telling on people's ckeys

* Update modular_skyrat/modules/contractor/code/datums/contractor_datum.dm

Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>

* Update modular_skyrat/modules/contractor/code/datums/contractor_datum.dm

---------

Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
2023-10-05 20:52:10 -04:00

13 lines
444 B
Plaintext

/datum/controller/subsystem/ticker/proc/opfor_report()
var/list/result = list()
result += "<span class='header'>Opposing Force Report:</span><br>"
if(!SSopposing_force.approved_applications.len)
result += span_red("No applications were approved.")
else
for(var/datum/opposing_force/opfor in SSopposing_force.approved_applications)
result += opfor.roundend_report()
return "<div class='panel stationborder'>[result.Join()]</div>"