This commit is contained in:
Jamie D
2021-09-01 14:28:12 +01:00
committed by GitHub
parent be3a4bbeb4
commit 2fb913b410
4 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
FROM tgstation/byond:514.1565 as base
FROM tgstation/byond:514.1566 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.1565](https://www.byond.com/download/build/514/514.1565_byond.exe) and may potentially NOT work on newer or older versions.
## The Yogstation codebase recommends compiling using version [514.1566](https://www.byond.com/download/build/514/514.1566_byond.exe) and may potentially NOT work on newer or older versions.
## :exclamation: How to compile :exclamation:

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 1565
#define MAX_BYOND_MINOR 1566
///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.1565 at www.byond.com/download/build/514/514.1565_byond.exe
#error Your version of BYOND is too new to compile this project. Download version 514.1566 at www.byond.com/download/build/514/514.1566_byond.exe
#endif
#ifdef TRAVISBUILDING

View File

@@ -332,10 +332,10 @@ MAPROTATIONCHANCEDELTA 1
#CLIENT_WARN_VERSION 511
#CLIENT_WARN_POPUP
#CLIENT_WARN_MESSAGE Byond released 511 as the stable release. You can set the framerate your client runs at, which makes the game feel very different and cool. Shortly after its release we will end up using 511 client features and you will be forced to update.
CLIENT_ERROR_VERSION 514
CLIENT_ERROR_VERSION 513
CLIENT_ERROR_MESSAGE Your version of byond is not supported. Please upgrade.
## The minimum build needed for joining the server, if using 512, a good minimum build would be 1421 as that disables the Middle Mouse Button exploit.
CLIENT_ERROR_BUILD 1565
CLIENT_ERROR_BUILD 1542
## TOPIC RATE LIMITING
## This allows you to limit how many topic calls (clicking on an interface window) the client can do in any given game second and/or game minute.