[MIRROR] Removes an event that no longer actually does anything. (#1566)

* Removes an event that no longer holds relevance. (#54759)

Would definitely like to see dead bounty code get cleaned, but this is a step in the right direction.

* Removes an event that no longer actually does anything.

Co-authored-by: necromanceranne <40847847+necromanceranne@users.noreply.github.com>
This commit is contained in:
SkyratBot
2020-11-04 01:33:14 +01:00
committed by GitHub
parent d3d5267147
commit dfd6a07dd7
2 changed files with 0 additions and 21 deletions
@@ -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