home · contact · privacy
Server: Add explanatory comment.
[plomrogue] / src / server / init.c
index f4c191b8c72ff52d8a6bbe05d509ac33fa14a341..c0935a55a23bec254ce9f446b3a0e902411c46e1 100644 (file)
@@ -224,9 +224,9 @@ extern uint8_t remake_world()
         }
     }
     world.turn = 1;
-    world.do_update = 1;
+    world.do_update = 1; /* calling obey_msg() only sets this if world.exists */
     world.exists = 1;
-    send_to_outfile("NEW_WORLD\n");
+    send_to_outfile("NEW_WORLD\n", 1);
     return 0;
 }