Skip to content

Commit

Permalink
Bumps byond to 1583 (BeeStation#6556)
Browse files Browse the repository at this point in the history
* Bumps byond to 1583

* client version too
  • Loading branch information
Crossedfall authored Mar 27, 2022
1 parent b5786ef commit f1ae734
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM beestation/byond:514.1575 as base
FROM beestation/byond:514.1583 as base

# Install the tools needed to compile our rust dependencies
FROM base as rust-build
Expand Down
4 changes: 2 additions & 2 deletions code/_compile_options.dm
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@

//Update this whenever the byond version is stable so people stop updating to hilariously broken versions
#define MAX_COMPILER_VERSION 514
#define MAX_COMPILER_BUILD 1575
#define MAX_COMPILER_BUILD 1583
#if DM_VERSION > MAX_COMPILER_VERSION || DM_BUILD > MAX_COMPILER_BUILD
#warn WARNING: Your BYOND version is over the recommended version (514.1575)! Stability is not guaranteed.
#warn WARNING: Your BYOND version is over the recommended version (514.1583)! Stability is not guaranteed.
#endif
//Log the full sendmaps profile on 514.1556+, any earlier and we get bugs or it not existing
#if DM_VERSION >= 514 && DM_BUILD >= 1556
Expand Down
2 changes: 1 addition & 1 deletion code/modules/client/client_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


#define UPLOAD_LIMIT 10485760 //Restricts client uploads to the server to 1MB //Could probably do with being lower.
#define MAX_RECOMMENDED_CLIENT 1582
#define MAX_RECOMMENDED_CLIENT 1583

GLOBAL_LIST_INIT(blacklisted_builds, list(
"1407" = "bug preventing client display overrides from working leads to clients being able to see things/mobs they shouldn't be able to see",
Expand Down
2 changes: 1 addition & 1 deletion dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# byond version
export BYOND_MAJOR=514
export BYOND_MINOR=1575
export BYOND_MINOR=1583

#rust version
export RUST_VERSION=1.54.0
Expand Down

0 comments on commit f1ae734

Please sign in to comment.