From a58a8cdefb8f8c68593c4589606a7f3ae6ac2634 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 13 Mar 2018 05:45:34 -0500 Subject: [PATCH] [MIRROR] Fixes client version config not working (#5935) * Merge pull request #36350 from MrStonedOne/patch-490 Fixes client version config not working * Fixes client version config not working --- code/controllers/configuration/entries/general.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm index 91e1330316..0608baea8c 100644 --- a/code/controllers/configuration/entries/general.dm +++ b/code/controllers/configuration/entries/general.dm @@ -320,7 +320,6 @@ /datum/config_entry/number/client_warn_version config_entry_value = null min_val = 500 - max_val = DM_VERSION - 1 /datum/config_entry/string/client_warn_message config_entry_value = "Your version of byond may have issues or be blocked from accessing this server in the future." @@ -330,7 +329,6 @@ /datum/config_entry/number/client_error_version config_entry_value = null min_val = 500 - max_val = DM_VERSION - 1 /datum/config_entry/string/client_error_message config_entry_value = "Your version of byond is too old, may have issues, and is blocked from accessing this server."