Compare commits

..

4 Commits

Author SHA1 Message Date
copygirl 9641101a45 Remove `on_connecting` observer 1 month ago
copygirl df684d3a02 Reorganize common exports into `prelude` module 1 month ago
copygirl 9b77a07aa5 Delay gameplay until assets loaded 1 month ago
copygirl 2c7d27311b Start local server by adding `(Linked, Started)` 1 month ago
  1. 3
      common/src/network/server.rs

@ -35,7 +35,8 @@ impl Command for StartLocalServerCommand {
world.spawn((
Server::default(),
Name::from("LocalServer"),
Started, // yeah it's started, alright
// NOTE: Inserting both makes the local-only server act properly.
(Linked, Started), // yeah it's started, alright
));
}
}

Loading…
Cancel
Save