diff --git a/code/modules/events/stray_cargo.dm b/code/modules/events/stray_cargo.dm index f7ff0e6bc57..dfa4ecf6df0 100644 --- a/code/modules/events/stray_cargo.dm +++ b/code/modules/events/stray_cargo.dm @@ -2,9 +2,9 @@ /datum/round_event_control/stray_cargo name = "Stray Cargo Pod" typepath = /datum/round_event/stray_cargo - weight = 20 - max_occurrences = 4 - earliest_start = 10 MINUTES + weight = 6 //Singulostation edit - Changed spawn-chance from 20 to 6 + max_occurrences = 99999 // Singulostation edit - Buffed max occurences because perma server + earliest_start = 300 MINUTES // Singulostation edit - Annoying round-start ///Spawns a cargo pod containing a random cargo supply pack on a random area of the station /datum/round_event/stray_cargo @@ -68,10 +68,7 @@ if(!allowed_areas) ///Places that shouldn't explode var/list/safe_area_types = typecacheof(list( - /area/ai_monitored/turret_protected/ai, - /area/ai_monitored/turret_protected/ai_upload, - /area/engine, - /area/shuttle) + /area/ //Singulostation edit - We don't want exploding pods ) ///Subtypes from the above that actually should explode. @@ -85,9 +82,9 @@ /datum/round_event_control/stray_cargo/syndicate name = "Stray Syndicate Cargo Pod" typepath = /datum/round_event/stray_cargo/syndicate - weight = 6 - max_occurrences = 1 - earliest_start = 30 MINUTES + weight = 3 //Singulostation edit - Changed spawn-chance from 6 to 3 + max_occurrences = 99999 // Singulostation edit - Buffed max occurences because perma server + earliest_start = 300 MINUTES // Singulostation edit - Annoying round-start /datum/round_event/stray_cargo/syndicate possible_pack_types = list(/datum/supply_pack/misc/syndicate)