From f11a74e6f30922e2d1a349f5a23ccab9614e460c Mon Sep 17 00:00:00 2001 From: Leo Date: Sat, 17 Feb 2018 11:14:47 -0200 Subject: [PATCH] Removes unnused random event --- code/modules/events/holiday/friday13th.dm | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 code/modules/events/holiday/friday13th.dm diff --git a/code/modules/events/holiday/friday13th.dm b/code/modules/events/holiday/friday13th.dm deleted file mode 100644 index ba2c9ea78f..0000000000 --- a/code/modules/events/holiday/friday13th.dm +++ /dev/null @@ -1,18 +0,0 @@ -// Basically, cut the event frequency in half to simulate unluckiness. - -/datum/round_event_control/fridaythethirteen - name = "Friday the 13th" - holidayID = FRIDAY_13TH - typepath = /datum/round_event/fridaythethirteen - weight = -1 - max_occurrences = 1 - earliest_start = 0 - -/datum/round_event/fridaythethirteen/start() - //Very unlucky, cut the frequency of events in half. - events.frequency_lower /= 2 - events.frequency_upper /= 2 - -/datum/round_event/fridaythethirteen/announce(fake) - for(var/mob/living/L in player_list) - to_chat(L, "You are feeling unlucky today.") \ No newline at end of file