From 5a948cbb5c4c26c7aa9749a25c5c6cfae8d33e01 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Thu, 12 Oct 2023 20:10:59 -0500 Subject: [PATCH] removes 2 vars we no longer need (#22865) --- code/modules/client/client_procs.dm | 2 -- code/modules/client/preference/preferences.dm | 4 ---- 2 files changed, 6 deletions(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 9682d75434b..3481a367611 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -326,8 +326,6 @@ view = prefs.viewrange prefs.init_keybindings(prefs.keybindings_overrides) //The earliest sane place to do it where prefs are not null, if they are null you can't do crap at lobby - prefs.last_ip = address //these are gonna be used for banning - prefs.last_id = computer_id //these are gonna be used for banning fps = prefs.clientfps // Log alts diff --git a/code/modules/client/preference/preferences.dm b/code/modules/client/preference/preferences.dm index b5c6cf8253d..f6397708b1c 100644 --- a/code/modules/client/preference/preferences.dm +++ b/code/modules/client/preference/preferences.dm @@ -56,10 +56,6 @@ GLOBAL_LIST_INIT(special_role_times, list( //minimum age (in days) for accounts var/max_save_slots = MAX_SAVE_SLOTS var/max_gear_slots = 0 - //non-preference stuff - var/last_ip - var/last_id - //game-preferences var/lastchangelog = "1" //Saved changlog timestamp (unix epoch) to detect if there was a change. Dont set this to 0 unless you want the last changelog date to be 4x longer than the expected lifespan of the universe. var/lastchangelog_2 = "1" // Clone of the above var for viewing changes since last connection. This is never overriden. Yes it needs to exist.