From d1e0d7e7cddb3371e75bf2abb0b3144b1c09a7da Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Fri, 14 Feb 2025 06:45:41 -0700 Subject: [PATCH] [MIRROR] dependency (#10157) Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> --- .tgs.yml | 2 +- code/modules/mob/new_player/login.dm | 2 -- dependencies.sh | 4 ++-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.tgs.yml b/.tgs.yml index 8aedea02b4..0618a3d8e2 100644 --- a/.tgs.yml +++ b/.tgs.yml @@ -3,7 +3,7 @@ version: 1 # The BYOND version to use (kept in sync with dependencies.sh by the "TGS Test Suite" CI job) # Must be interpreted as a string, keep quoted -byond: "515.1647" +byond: "516.1655" # Folders to create in "/Configuration/GameStaticFiles/" static_files: # Config directory should be static diff --git a/code/modules/mob/new_player/login.dm b/code/modules/mob/new_player/login.dm index 101b956c66..a89d7cc6ce 100644 --- a/code/modules/mob/new_player/login.dm +++ b/code/modules/mob/new_player/login.dm @@ -60,8 +60,6 @@ var/obj/effect/lobby_image = new /obj/effect/lobby_image /mob/new_player/proc/version_warnings() var/problems // string to store message to present to player as a problem - if(client.byond_version < 516) // Temporary warning whilst we transition to byond 516. - problems = "The server is currently transitioning to BYOND 516, and you are currently on version [client.byond_version]. If you continue to use your current version, you WILL experience UI issues, and very soon older clients will not be able to connect at all. You can update BYOND on the client homepage by switching from stable to beta, just above either the update button or where it says that you are currently up to date. For more information how to update byond, please check the wiki." // TODO: Move this to a config file at some point maybe? What would the structure of that look like? switch(client.byond_build) // http://www.byond.com/forum/post/2711510 diff --git a/dependencies.sh b/dependencies.sh index 6d48499d57..c1eadd7026 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -4,8 +4,8 @@ #Final authority on what's required to fully build the project # byond version -export BYOND_MAJOR=515 -export BYOND_MINOR=1647 +export BYOND_MAJOR=516 +export BYOND_MINOR=1655 # Macro Count export MACRO_COUNT=8