From cdb3dbe6abf76972fa528991d7eb3e96e22b23b1 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Sun, 28 Feb 2016 18:18:03 -0800 Subject: [PATCH] 510: Enforce >=510 compile --- code/_compile_options.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_compile_options.dm b/code/_compile_options.dm index 1c5fd05d3e0..16a06898f26 100644 --- a/code/_compile_options.dm +++ b/code/_compile_options.dm @@ -12,7 +12,7 @@ #define MAX_NAME_LEN 26 // Version check, terminates compilation if someone is using a version of BYOND that's too old -#if DM_VERSION < 508 +#if DM_VERSION < 510 #error OUTDATED VERSION ERROR - \ Due to BYOND features used in this codebase, you must update to version 508 or later to compile. \ This may require updating to a beta release.