Fix: byond tracy init (#26872)

* remove https:// from version error

* move proc_refs file
This commit is contained in:
Mikhail G.
2024-09-26 21:15:36 +00:00
committed by GitHub
parent 652514be85
commit f4e20a3765
4 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -43,6 +43,6 @@
#define MIN_COMPILER_BUILD 1619
#if DM_VERSION < MIN_COMPILER_VERSION || DM_BUILD < MIN_COMPILER_BUILD
//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 Your version of BYOND is too out-of-date to compile this project. Go to secure.byond.com/download and update.
#error You need version 515.1619 or higher
#endif
+1 -1
View File
@@ -17,6 +17,7 @@
#include "code\__byond_version_compat.dm"
#include "code\_compile_options.dm"
#include "code\world_definition.dm"
#include "code\__DEFINES\__proc_refs.dm"
#include "code\__DEFINES\_click.dm"
#include "code\__DEFINES\_globals.dm"
#include "code\__DEFINES\_init.dm"
@@ -101,7 +102,6 @@
#include "code\__DEFINES\pipes.dm"
#include "code\__DEFINES\power_defines.dm"
#include "code\__DEFINES\preferences_defines.dm"
#include "code\__DEFINES\proc_refs.dm"
#include "code\__DEFINES\procpath.dm"
#include "code\__DEFINES\qdel_defines.dm"
#include "code\__DEFINES\radiation_defines.dm"
+1 -1
View File
@@ -18,7 +18,7 @@ def print_error(message: str, filename: str, line_number: int):
else:
print(f"{filename}:{line_number}: {RED}{message}{NC}")
IGNORE_515_PROC_MARKER_FILENAME = "proc_refs.dm"
IGNORE_515_PROC_MARKER_FILENAME = "__proc_refs.dm"
CHECK_515_PROC_MARKER_RE = re.compile(r"\.proc/")
def check_515_proc_syntax(idx, line):
if CHECK_515_PROC_MARKER_RE.search(line):