home · contact · privacy
Replace old with new client, drop redo system needed to build old one.
[plomrogue] / roguelike-server
index 753961d1cb5323a4c231a76236215eec4cccf183..f7b2896f104a20fd49ff6cd85ba8b15efc95227e 100755 (executable)
@@ -34,7 +34,7 @@ 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 ./redo first?")
+        raise SystemExit("No library " + libpath + ", run ./build.sh first?")
     libpr = ctypes.cdll.LoadLibrary(libpath)
     libpr.seed_rrand.restype = ctypes.c_uint32
     return libpr