mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
* 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>
13 lines
444 B
Plaintext
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>"
|