X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plomrogue-server.py;h=a0210126188f3b67e91321441153e7f51fcce1c0;hb=83434e3be9de0f257abb9e1e0b8e14e86fbafd77;hp=5af05f7949e2ca18c16bcb3359d0f73d67fc6e10;hpb=54e227069cb50992e19014fd857e9b846b371d09;p=plomrogue diff --git a/plomrogue-server.py b/plomrogue-server.py index 5af05f7..a021012 100755 --- a/plomrogue-server.py +++ b/plomrogue-server.py @@ -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",