summaryrefslogtreecommitdiff
path: root/src/map/script.h
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2018-07-30 14:43:53 -0400
committergumi <git@gumi.ca>2018-07-30 14:47:16 -0400
commit4118b1135eb79c211aafb6408a4ad8cf9ce09b02 (patch)
treeb24c10e28656f91336ffc08def4e41ddca818ef2 /src/map/script.h
parent87eb2f98518a63a3f640b97ad62c8b18a5d6b946 (diff)
downloadhercules-4118b1135eb79c211aafb6408a4ad8cf9ce09b02.tar.gz
hercules-4118b1135eb79c211aafb6408a4ad8cf9ce09b02.tar.bz2
hercules-4118b1135eb79c211aafb6408a4ad8cf9ce09b02.tar.xz
hercules-4118b1135eb79c211aafb6408a4ad8cf9ce09b02.zip
push constants as C_NAME in the script buffer
Diffstat (limited to 'src/map/script.h')
-rw-r--r--src/map/script.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/map/script.h b/src/map/script.h
index b6b54ca5f..9c72b793c 100644
--- a/src/map/script.h
+++ b/src/map/script.h
@@ -143,7 +143,6 @@ struct item_data;
/// Returns if this a reference to a param
#define reference_toparam(data) ( script->str_data[reference_getid(data)].type == C_PARAM )
/// Returns if this a reference to a variable
-//##TODO confirm it's C_NAME [FlavioJS]
#define reference_tovariable(data) ( script->str_data[reference_getid(data)].type == C_NAME )
/// Returns the unique id of the reference (id and index)
#define reference_getuid(data) ( (data)->u.num )