Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .tgs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "<instance_path>/Configuration/GameStaticFiles/"
static_files:
# Config directory should be static
Expand Down
6 changes: 3 additions & 3 deletions code/controllers/subsystem/statpanel.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
))
Expand Down
6 changes: 4 additions & 2 deletions dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading