From 54488d99efd2c15a75a63bc0cc2cd57610139591 Mon Sep 17 00:00:00 2001 From: xPokee Date: Mon, 24 Nov 2025 14:51:58 -0500 Subject: [PATCH] 516 Compat --- .tgs.yml | 3 ++- code/controllers/subsystem/statpanel.dm | 6 +++--- dependencies.sh | 6 ++++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.tgs.yml b/.tgs.yml index 8aedea02b4e8..a70a2f27fa04 100644 --- a/.tgs.yml +++ b/.tgs.yml @@ -3,7 +3,8 @@ 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" +# BUBBER EDIT - ORIGINAL: byond: "515.1647" +byond: "516.1659" # Folders to create in "/Configuration/GameStaticFiles/" static_files: # Config directory should be static diff --git a/code/controllers/subsystem/statpanel.dm b/code/controllers/subsystem/statpanel.dm index ac4d3dc4412c..f320429bc5fa 100644 --- a/code/controllers/subsystem/statpanel.dm +++ b/code/controllers/subsystem/statpanel.dm @@ -88,15 +88,15 @@ SUBSYSTEM_DEF(statpanels) return /datum/controller/subsystem/statpanels/proc/set_status_tab(client/target) -#if MIN_COMPILER_VERSION > 515 +/* #if MIN_COMPILER_VERSION > 515 // BUBBER EDIT - REMOVAL - START #warn 516 is most certainly out of beta, remove this beta notice if you haven't already -#endif +#endif */ // BUBBER EDIT - REMOVAL - END var/static/list/beta_notice = list("", "You are on the BYOND 516, various UIs and such may be broken!", "Please report issues, and switch back to BYOND 515 if things are causing too many issues for you.") if(!global_data)//statbrowser hasnt fired yet and we were called from immediate_send_stat_data() return target.stat_panel.send_message("update_stat", list( - "global_data" = (target.byond_version < 516) ? global_data : (global_data + beta_notice), + "global_data" = global_data, // BUBBER EDIT - PREVIOUS: "global_data" = (target.byond_version < 516) ? global_data : (global_data + beta_notice), "ping_str" = "Ping: [round(target.lastping, 1)]ms (Average: [round(target.avgping, 1)]ms)", "other_str" = target.mob?.get_status_tab_items(), )) diff --git a/dependencies.sh b/dependencies.sh index 8ca371c86761..5f12df27a458 100755 --- a/dependencies.sh +++ b/dependencies.sh @@ -4,8 +4,10 @@ #Final authority on what's required to fully build the project # byond version -export BYOND_MAJOR=515 -export BYOND_MINOR=1647 +# BUBBER EDIT - PREVIOUS: export BYOND_MAJOR=515 +export BYOND_MAJOR=516 +# BUBBER EDIT - PREVIOUS: export BYOND_MINOR=1647 +export BYOND_MINOR=1659 #rust version export RUST_VERSION=1.81.0