Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 112ce94

Browse files
committed
Update gamemode_subsystem.dm
1 parent 167ce44 commit 112ce94

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

yogstation/code/modules/storytellers/gamemode_subsystem.dm

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -604,26 +604,7 @@ SUBSYSTEM_DEF(gamemode)
604604

605605
/datum/controller/subsystem/gamemode/proc/send_intercept()
606606
var/intercepttext = "<b><i>Central Command Status Summary</i></b><hr>"
607-
intercepttext += "<b>Central Command has intercepted and partially decoded a Syndicate transmission with vital information regarding their movements. The following report outlines the most \
608-
likely threats to appear in your sector.</b>"
609-
var/list/report_weights = config.mode_false_report_weight.Copy()
610-
report_weights["invalid"] = 0 //Prevent the current mode from being falsely selected.
611-
var/list/reports = list()
612-
var/Count = 0 //To compensate for missing correct report
613-
if(prob(65)) // 65% chance the actual mode will appear on the list
614-
reports += config.mode_reports[report_type]
615-
Count++
616-
for(var/i in Count to rand(3,5)) //Between three and five wrong entries on the list.
617-
var/false_report_type = pickweightAllowZero(report_weights)
618-
report_weights[false_report_type] = 0 //Make it so the same false report won't be selected twice
619-
reports += config.mode_reports[false_report_type]
620-
621-
reports = shuffle(reports) //Randomize the order, so the real one is at a random position.
622-
623-
for(var/report in reports)
624-
intercepttext += "<hr>"
625-
intercepttext += report
626-
607+
intercepttext += "<b>Central Command has intercepted and is attempting to decode a Syndicate transmission with vital information regarding their movements in this station's sector.</b>"
627608
intercepttext += generate_station_goal_report()
628609

629610
if(CONFIG_GET(flag/auto_blue_alert))

0 commit comments

Comments
 (0)