Skip to content

Commit

Permalink
Bump min compiler version to 515.1627 (tgstation#81841)
Browse files Browse the repository at this point in the history
## About The Pull Request

Here we go again.

1624 fixed some bugs with `::`, which we're starting to make more use
of.


![image](https://github.com/tgstation/tgstation/assets/51863163/73c40c58-fcd5-463e-9ec7-2cf2fadcefb4)

Case in point: This test run
https://github.com/tgstation/tgstation/actions/runs/8147514803/job/22268415319?pr=81726

But then we need the fixes for 1624 so we go to 1626. 

But also 1627 has compiler improvements so might as well
  • Loading branch information
MrMelbert authored Mar 9, 2024
1 parent 2ab909b commit e9984a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/alternate_byond_versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# Format is version: map
# Example:
# 500.1337: runtimestation
515.1621: runtimestation
515.1627: 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 1621
#define MIN_COMPILER_BUILD 1627
#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.1621 or higher
#error You need version 515.1627 or higher
#endif

// Keep savefile compatibilty at minimum supported level
Expand Down

0 comments on commit e9984a7

Please sign in to comment.