From 3e5cc6e7388fb2dff8f592cacaab5f0410ab3eaf Mon Sep 17 00:00:00 2001 From: Nadyr <41974248+Darlantanis@users.noreply.github.com> Date: Tue, 19 Jul 2022 19:47:54 -0400 Subject: [PATCH] powder that makes you say yes --- code/modules/client/preferences.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index c06d0ab35d..b4a63bea83 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -33,7 +33,6 @@ var/list/preferences_datums = list() var/tgui_swapped_buttons = FALSE //character preferences - var/num_languages = 0 //CHOMPEdit var/real_name //our character's name var/be_random_name = 0 //whether we are a random name every round var/nickname //our character's nickname @@ -164,12 +163,6 @@ var/list/preferences_datums = list() ///If they are currently in the process of swapping slots, don't let them open 999 windows for it and get confused var/selecting_slots = FALSE -//CHOMPEdit Begin -/datum/preferences/proc/numlanguage() - var/datum/species/S = GLOB.all_species[species] - var/num = max(num_languages, S.num_alternate_languages) - return (num == 0) ? 3 : num //Don't return 0 -//CHOMPEdit End /datum/preferences/New(client/C) player_setup = new(src)