From 8d152e9139918613bde0d4e9bd4da25f73f7e095 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Sun, 3 Jan 2016 14:48:20 +0100 Subject: [PATCH] Fixed compilation on linux. Stupid me, why did I do this in the first place. --- src/map/script_constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/script_constants.h b/src/map/script_constants.h index 9d6693d3f3..15ac2a1879 100644 --- a/src/map/script_constants.h +++ b/src/map/script_constants.h @@ -4,7 +4,7 @@ #ifndef _SCRIPT_CONSTANTS_H_ #define _SCRIPT_CONSTANTS_H_ - #define export_constant(a) script_set_constant(###a,a,false) + #define export_constant(a) script_set_constant(#a,a,false) /* server defines */ export_constant(PACKETVER);