mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-28 14:37:04 +01:00
Fix: byond tracy init (#26872)
* remove https:// from version error * move proc_refs file
This commit is contained in:
@@ -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
@@ -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"
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user