From e4824f76472ddcdc0da0d2ce307a8db0a9c597f9 Mon Sep 17 00:00:00 2001 From: Nick <42454181+Momo8289@users.noreply.github.com> Date: Sun, 12 Nov 2023 03:37:29 -0500 Subject: [PATCH] More appropriate remembrance day message (#79650) ## About The Pull Request Changes the greeting message displayed during remembrance day to "Lest we forget." Closes #79649. ## Why It's Good For The Game The current "Have a happy Remembrance day" does not fit. At all. This makes it a bit more tasteful. --- code/modules/holiday/holidays.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/holiday/holidays.dm b/code/modules/holiday/holidays.dm index 035f44ae11d..8c62144dfc5 100644 --- a/code/modules/holiday/holidays.dm +++ b/code/modules/holiday/holidays.dm @@ -627,6 +627,9 @@ begin_day = 11 holiday_hat = /obj/item/food/grown/poppy +/datum/holiday/remembrance_day/greet() + return "Lest we forget." + /datum/holiday/remembrance_day/getStationPrefix() return pick("Peace", "Armistice", "Poppy")