Skip to content

Commit

Permalink
[MIRROR] Bumps min compiler version to 1621 / adds min compiler versi…
Browse files Browse the repository at this point in the history
…on to alternate_byond_versions (#703)

* Bumps min compiler version to 1621 / adds min compiler version to alternate_byond_versions (#81183)

## About The Pull Request

Min compiler version is something we should probably test to make sure
it actually works.

Case in point: Our current min version (1609) cannot compile as of
#81152 due to a byond bug fixed in version 515.1621.

* Bumps min compiler version to 1621 / adds min compiler version to alternate_byond_versions

---------

Co-authored-by: MrMelbert <[email protected]>
  • Loading branch information
2 people authored and FFMirrorBot committed Jan 31, 2024
1 parent e2f8dd3 commit 72baabb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/alternate_byond_versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
# Format is version: map
# Example:
# 500.1337: runtimestation
515.1621: runtimestation
4 changes: 2 additions & 2 deletions code/__byond_version_compat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

//Update this whenever you need to take advantage of more recent byond features
#define MIN_COMPILER_VERSION 515
#define MIN_COMPILER_BUILD 1609
#define MIN_COMPILER_BUILD 1621
#if (DM_VERSION < MIN_COMPILER_VERSION || DM_BUILD < MIN_COMPILER_BUILD) && !defined(SPACEMAN_DMM)
//Don't forget to update this part
#error Your version of BYOND is too out-of-date to compile this project. Go to https://secure.byond.com/download and update.
#error You need version 515.1609 or higher
#error You need version 515.1621 or higher
#endif

// Keep savefile compatibilty at minimum supported level
Expand Down

0 comments on commit 72baabb

Please sign in to comment.