From 1ec875d0e91107d8e42f50b8bea94c3d5b9316b5 Mon Sep 17 00:00:00 2001 From: Raeschen Date: Fri, 7 Jul 2023 23:53:42 +0200 Subject: [PATCH 1/3] Disable birthday announcements --- code/game/birthday.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/birthday.dm b/code/game/birthday.dm index 465675a8c9..4f853167ab 100644 --- a/code/game/birthday.dm +++ b/code/game/birthday.dm @@ -18,11 +18,13 @@ client.prefs.last_birthday_notification = world_time_year //We only want to ask once a year per character, this persists, update early in case of shenanigans if(birthday) //woo msg = "Today is your birthday! Do you want to increase your character's listed age?" + /* //Chomp DISABLE - Absolutely not. if(client.prefs.bday_announce) var/list/sounds = list('sound/voice/BIRTH1.ogg','sound/voice/BIRTH2.ogg') var/oursound = pickweight(sounds) command_announcement.Announce("Confirmed presence of BIRTHDAY aboard the station! It is [src.real_name]'s birthday or similar sort of celebration, name day, hatchday, WHATEVER! We encourage you to go find [src.real_name] and show them how we celebrate around here! Have a secure day!", "BIRTHDAY!", oursound) to_world("We did it") + */ //Chomp DISABLE END else msg = "Your birthday has passed! Do you want to increase your character's listed age?" //sad, but thus is the life of an adult if(tgui_alert(src, msg,"BIRTHDAY! ([bday_month]/[bday_day])",list("Level me up, baby","No way, I'mma stay young forever")) == "Level me up, baby") From 1afe3df5f00a1c1dd925fefcc061e3790d8ebda5 Mon Sep 17 00:00:00 2001 From: Raeschen Date: Fri, 7 Jul 2023 23:58:27 +0200 Subject: [PATCH 2/3] Update 01_basic.dm --- code/modules/client/preference_setup/general/01_basic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preference_setup/general/01_basic.dm b/code/modules/client/preference_setup/general/01_basic.dm index 32aa12ee12..4aab7ef47f 100644 --- a/code/modules/client/preference_setup/general/01_basic.dm +++ b/code/modules/client/preference_setup/general/01_basic.dm @@ -86,7 +86,7 @@ . += "
" . += "Biological Sex: [gender2text(pref.biological_gender)]
" . += "Pronouns: [gender2text(pref.identifying_gender)]
" - . += "Age: [pref.age] Birthday: [pref.bday_month]/[pref.bday_day] - Announce?: [pref.bday_announce ? "Yes" : "No"]
" + . += "Age: [pref.age] Birthday: [pref.bday_month]/[pref.bday_day] - Announce?: [pref.bday_announce ? "Yes" : "Disabled"]
" //ChompEDIT - DISABLE the announcement . += "Spawn Point: [pref.spawnpoint]
" if(config.allow_Metadata) . += "OOC Notes: Edit
" @@ -192,7 +192,7 @@ return TOPIC_REFRESH else if(href_list["bday_announce"]) - pref.bday_announce = !pref.bday_announce + pref.bday_announce = False //ChompEDIT - Disable this return TOPIC_REFRESH else if(href_list["spawnpoint"]) From b3d1bf3be4aab10b5b296c5ba31d8763ca2edc0c Mon Sep 17 00:00:00 2001 From: Raeschen Date: Sat, 8 Jul 2023 00:01:17 +0200 Subject: [PATCH 3/3] Update 01_basic.dm --- code/modules/client/preference_setup/general/01_basic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preference_setup/general/01_basic.dm b/code/modules/client/preference_setup/general/01_basic.dm index 4aab7ef47f..8680339eb5 100644 --- a/code/modules/client/preference_setup/general/01_basic.dm +++ b/code/modules/client/preference_setup/general/01_basic.dm @@ -192,7 +192,7 @@ return TOPIC_REFRESH else if(href_list["bday_announce"]) - pref.bday_announce = False //ChompEDIT - Disable this + pref.bday_announce = 0 //ChompEDIT - Disable this return TOPIC_REFRESH else if(href_list["spawnpoint"])