From 7e50c01b88e8292af4f1df55840e5a20bbb2d340 Mon Sep 17 00:00:00 2001 From: Selis <12716288+ItsSelis@users.noreply.github.com> Date: Wed, 5 Mar 2025 21:43:23 +0100 Subject: [PATCH] Update minimum compiler version in __byond_version_compat.dm (#17164) * Update __byond_version_compat.dm * Update __byond_version_compat.dm * Updated dependencies * up --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> --- code/__byond_version_compat.dm | 12 +++--------- dependencies.sh | 2 +- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/code/__byond_version_compat.dm b/code/__byond_version_compat.dm index 8272fa4671c..7bcdcaff89e 100644 --- a/code/__byond_version_compat.dm +++ b/code/__byond_version_compat.dm @@ -7,18 +7,12 @@ // This file contains defines allowing targeting byond versions newer than the supported //Update this whenever you need to take advantage of more recent byond features -#define MIN_COMPILER_VERSION 514 -#define MIN_COMPILER_BUILD 1556 +#define MIN_COMPILER_VERSION 516 +#define MIN_COMPILER_BUILD 1657 #if (DM_VERSION < MIN_COMPILER_VERSION || DM_BUILD < MIN_COMPILER_BUILD) && !defined(SPACEMAN_DMM) && !defined(OPENDREAM) //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 514.1556 or higher -#endif - -#if (DM_VERSION == 514 && DM_BUILD > 1575 && DM_BUILD <= 1577) -#error Your version of BYOND currently has a crashing issue that will prevent you from running Dream Daemon test servers. -#error We require developers to test their content, so an inability to test means we cannot allow the compile. -#error Please consider downgrading to 514.1575 or lower. +#error You need version 516.1657 or higher #endif // Keep savefile compatibilty at minimum supported level diff --git a/dependencies.sh b/dependencies.sh index c1eadd70261..6dcbfa401fc 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -5,7 +5,7 @@ # byond version export BYOND_MAJOR=516 -export BYOND_MINOR=1655 +export BYOND_MINOR=1657 # Macro Count export MACRO_COUNT=8