From 59c686eae0f69aad015da408b97ff7f62b7ebbb7 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 31 Jan 2024 21:41:11 +0100 Subject: [PATCH] [MIRROR] Bumps min compiler version to 1621 / adds min compiler version to alternate_byond_versions (#26305) * 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 <51863163+MrMelbert@users.noreply.github.com> --- .github/alternate_byond_versions.txt | 1 + code/__byond_version_compat.dm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/alternate_byond_versions.txt b/.github/alternate_byond_versions.txt index 7b50af46885..111e573827e 100644 --- a/.github/alternate_byond_versions.txt +++ b/.github/alternate_byond_versions.txt @@ -5,3 +5,4 @@ # Format is version: map # Example: # 500.1337: runtimestation +515.1621: runtimestation diff --git a/code/__byond_version_compat.dm b/code/__byond_version_compat.dm index f3677cf2c64..5eb4bda14e7 100644 --- a/code/__byond_version_compat.dm +++ b/code/__byond_version_compat.dm @@ -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