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") diff --git a/code/modules/client/preference_setup/general/01_basic.dm b/code/modules/client/preference_setup/general/01_basic.dm index 32aa12ee12..8680339eb5 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 = 0 //ChompEDIT - Disable this return TOPIC_REFRESH else if(href_list["spawnpoint"])