From 32d7e9f1294095bc91d7d47f33fa37f67e470d11 Mon Sep 17 00:00:00 2001 From: LT3 <83487515+lessthnthree@users.noreply.github.com> Date: Fri, 7 Mar 2025 16:46:18 -0800 Subject: [PATCH] Remove 516 beta message (#3264) ## About The Pull Request Removes the 516 beta warning, since we now require 516. ## Proof Of Testing
Screenshots/Videos ![image](https://github.com/user-attachments/assets/2f680838-bf1c-4ffd-b934-0e956a21c3d2)
--- code/controllers/subsystem/statpanel.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/statpanel.dm b/code/controllers/subsystem/statpanel.dm index 548c257f0db..092f7eff9c1 100644 --- a/code/controllers/subsystem/statpanel.dm +++ b/code/controllers/subsystem/statpanel.dm @@ -133,7 +133,7 @@ SUBSYSTEM_DEF(statpanels) 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 CHANGE - Remove beta notice "ping_str" = "Ping: [round(target.lastping, 1)]ms (Average: [round(target.avgping, 1)]ms)", "other_str" = target.mob?.get_status_tab_items(), ))