home · contact · privacy
Build script: *Always* build libplomrogue, mtime check is not portable.
[plomrogue] / plomrogue-server.py
index 5af05f7949e2ca18c16bcb3359d0f73d67fc6e10..a0210126188f3b67e91321441153e7f51fcce1c0 100755 (executable)
@@ -26,7 +26,8 @@ def prep_library():
     """Prepare ctypes library at ./libplomrogue.so"""
     libpath = ("./libplomrogue.so")
     if not os.access(libpath, os.F_OK):
-        raise SystemExit("No library " + libpath + ", run ./compile.sh first?")
+        raise SystemExit("No library " + libpath +
+                         ", run ./compile-server.sh first?")
     libpr = ctypes.cdll.LoadLibrary(libpath)
     libpr.seed_rrand.argtypes = [ctypes.c_uint8, ctypes.c_uint32]
     libpr.seed_rrand.restype = ctypes.c_uint32
@@ -1598,7 +1599,7 @@ directions_db = {"east": "d", "south-east": "c", "south-west": "x",
 """File IO database."""
 io_db = {
     "path_save": "save",
-    "path_record": "record",
+    "path_record": "history",
     "path_worldconf": "confserver/world",
     "path_server": "server/",
     "path_in": "server/in",