home · contact · privacy
Server: Simplify rule for when to update worldstate file.
[plomrogue] / src / server / hardcoded_strings.c
index 8ce7475a725ef5d0cea7209342764154a2c29c9c..e26264a89b8f6aff2bc41ab9149f17caf7b369ec 100644 (file)
@@ -15,7 +15,6 @@ extern void init_strings()
     s[S_PATH_OUT] = "server/out";
     s[S_PATH_IN] = "server/in";
     s[S_PATH_RECORD] = "record";
-    s[S_PATH_SUFFIX_TMP] = "_tmp";
     s[S_PATH_SAVE] = "savefile";
     s[S_CMD_MAKE_WORLD] = "MAKE_WORLD";
     s[S_CMD_DO_FOV] = "BUILD_FOVS";
@@ -36,4 +35,5 @@ extern void init_strings()
     s[S_CMD_PICKUP] = "pick_up";
     s[S_CMD_DROP] = "drop";
     s[S_CMD_USE] = "use";
+    s[S_FCN_SPRINTF] = "sprintf()";
 }