home · contact · privacy
More helpfulness on how to start over in a new game world.
[plomrogue] / roguelike-server
index a16c1ca17a804eb368b8e7e03afba02e826dae29..c73a63a6f3e06dcfb06332689f91e791dc4b00f1 100755 (executable)
@@ -601,6 +601,8 @@ def decrement_lifepoints(t):
         if world_db["Things"][0] == t:
             t["fovmap"] = bytearray(b' ' * (world_db["MAP_LENGTH"] ** 2))
             strong_write(io_db["file_out"], "LOG You die.\n")
+            strong_write(io_db["file_out"],
+                         "LOG See README on how to start over.\n")
         else:
             t["fovmap"] = False
             t["T_MEMMAP"] = False