X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fserver%2Fhardcoded_strings.c;h=00b9e02c5b6aff05ac3b355a61f74c5458ba54a6;hb=bf396f111317663bba3950e57968af19f2f56a44;hp=b485514c2db65efc7d2fc24cfdc22566c2b89c24;hpb=19ebce2d7c380212d1b8e45a8e5c92e5a9c6d9c0;p=plomrogue diff --git a/src/server/hardcoded_strings.c b/src/server/hardcoded_strings.c index b485514..00b9e02 100644 --- a/src/server/hardcoded_strings.c +++ b/src/server/hardcoded_strings.c @@ -1,10 +1,15 @@ -/* hardcoded_strings.c */ +/* hardcoded_strings.c * + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. + */ #include "hardcoded_strings.h" -char * s[41]; +char * s[43]; @@ -27,6 +32,7 @@ extern void init_strings() s[S_CMD_TT_SYMB] = "TT_SYMBOL"; s[S_CMD_TT_NAME] = "TT_NAME"; s[S_CMD_TT_CORPS] = "TT_CORPSE_ID"; + s[S_CMD_TT_PROL] = "TT_PROLIFERATE"; s[S_CMD_T_ID] = "T_ID"; s[S_CMD_T_TYPE] = "T_TYPE"; s[S_CMD_T_POSY] = "T_POSY"; @@ -37,6 +43,7 @@ extern void init_strings() s[S_CMD_T_HP] = "T_LIFEPOINTS"; s[S_CMD_T_CARRIES] = "T_CARRIES"; s[S_CMD_T_MEMMAP] = "T_MEMMAP"; + s[S_CMD_T_MEMDEPTHMAP] = "T_MEMDEPTHMAP"; s[S_CMD_T_MEMTHING] = "T_MEMTHING"; s[S_CMD_AI] = "ai"; s[S_CMD_WAIT] = "wait";