From d4dc72bac44049d60b418d70f96f243ecb99eb9e Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Fri, 8 Jan 2016 01:33:43 +0000 Subject: [PATCH] C-CON: Add getpv and setpv as short forms for get/setplayervar, and #include as an alternate for include. git-svn-id: https://svn.eduke32.com/eduke32@5531 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/gamedef.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/polymer/eduke32/source/gamedef.c b/polymer/eduke32/source/gamedef.c index fc9227912..932e65499 100644 --- a/polymer/eduke32/source/gamedef.c +++ b/polymer/eduke32/source/gamedef.c @@ -127,6 +127,7 @@ typedef struct { const tokenmap_t altkeyw [] = { { "#define", CON_DEFINE }, + { "#include", CON_INCLUDE }, { "al", CON_ADDLOGVAR }, { "var", CON_GAMEVAR }, { "array", CON_GAMEARRAY }, @@ -158,6 +159,7 @@ const tokenmap_t altkeyw [] = { "abs", CON_KLABS }, { "getp", CON_GETPLAYER }, + { "getpv", CON_GETPLAYERVAR }, { "gets", CON_GETSECTOR }, { "geta", CON_GETACTOR }, { "getav", CON_GETACTORVAR }, @@ -166,6 +168,7 @@ const tokenmap_t altkeyw [] = { "geti", CON_GETINPUT }, { "setp", CON_SETPLAYER }, + { "setpv", CON_SETPLAYERVAR }, { "sets", CON_SETSECTOR }, { "seta", CON_SETACTOR }, { "setav", CON_SETACTORVAR },