This commit is contained in:
Jamie D
2022-11-06 17:52:32 +00:00
committed by GitHub
parent 68f3c6b4ae
commit 293d146e05
7 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
FROM tgstation/byond:514.1583 as base
FROM tgstation/byond:514.1589 as base
FROM base as build_base

View File

@@ -35,7 +35,7 @@ code tab of https://github.com/yogstation13/Yogstation
(note: this will use a lot of bandwidth if you wish to update and is a lot of
hassle if you want to make any changes at all, so it's not recommended.)
## The Yogstation codebase recommends compiling using version [514.1583](https://www.byond.com/download/build/514/514.1583_byond.exe) and may potentially NOT work on newer or older versions.
## The Yogstation codebase recommends compiling using version [514.1589](https://www.byond.com/download/build/514/514.1589_byond.exe) and may potentially NOT work on newer or older versions.
## :exclamation: How to compile :exclamation:

Binary file not shown.

Binary file not shown.

View File

@@ -60,12 +60,12 @@
//If you update these values, update the message in the #error
#define MAX_BYOND_MAJOR 514
#define MAX_BYOND_MINOR 1583
#define MAX_BYOND_MINOR 1589
///Uncomment to bypass the max version check. Note: This will likely break the game, only use if you know what you're doing
//#define IGNORE_MAX_BYOND_VERSION
#if ((DM_VERSION > MAX_BYOND_MAJOR) || (DM_BUILD > MAX_BYOND_MINOR)) && !defined(IGNORE_MAX_BYOND_VERSION)
#error Your version of BYOND is too new to compile this project. Download version 514.1583 at www.byond.com/download/build/514/514.1583_byond.exe
#error Your version of BYOND is too new to compile this project. Download version 514.1589 at www.byond.com/download/build/514/514.1589_byond.exe
#endif
#ifdef TRAVISBUILDING

View File

@@ -6,7 +6,7 @@
# byond version
# Extracted from the Dockerfile. Change by editing Dockerfile's FROM command.
export BYOND_MAJOR=514
export BYOND_MINOR=1583
export BYOND_MINOR=1589
#rust_g git tag
export RUST_G_VERSION=0.7.0

Binary file not shown.