diff --git a/code/modules/events/high_priority_bounty.dm b/code/modules/events/high_priority_bounty.dm deleted file mode 100644 index ffdcd8840b7..00000000000 --- a/code/modules/events/high_priority_bounty.dm +++ /dev/null @@ -1,20 +0,0 @@ -/datum/round_event_control/high_priority_bounty - name = "High Priority Bounty" - typepath = /datum/round_event/high_priority_bounty - max_occurrences = 3 - weight = 20 - earliest_start = 10 - -/datum/round_event/high_priority_bounty/announce(fake) - priority_announce("Central Command has issued a high-priority cargo bounty. Details have been sent to all bounty consoles.", "Nanotrasen Bounty Program") - -/datum/round_event/high_priority_bounty/start() - var/datum/bounty/B - for(var/attempts = 0; attempts < 50; ++attempts) - B = random_bounty() - if(!B) - continue - B.mark_high_priority(3) - if(try_add_bounty(B)) - break - diff --git a/tgstation.dme b/tgstation.dme index 4464eb9f5ef..4540987a251 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -1893,7 +1893,6 @@ #include "code\modules\events\ghost_role.dm" #include "code\modules\events\grid_check.dm" #include "code\modules\events\heart_attack.dm" -#include "code\modules\events\high_priority_bounty.dm" #include "code\modules\events\immovable_rod.dm" #include "code\modules\events\ion_storm.dm" #include "code\modules\events\major_dust.dm"