gameServer2/src/server/mod.rs
author Wuzzy <Wuzzy2@mail.ru>
Fri, 03 Nov 2017 05:46:36 +0100
changeset 12822 f062a31fc8f2
parent 12143 7e874846afe3
child 13119 1e39b8749072
permissions -rw-r--r--
Fix lastGameType not being updated if game type was demo or save (fixes a crash) Previously, if you first played a normal game, then a demo, the “play again” button would appear, but clicking it would only crash HW. This fix will remove this button after a demo or save, because the frontend doesn't know how to restart demos or saves yet.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
     1
pub mod server;
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
     2
pub mod client;
12130
6273f89ab13d Start on messages parser
unc0rr
parents: 12128
diff changeset
     3
pub mod coretypes;
12138
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12130
diff changeset
     4
mod actions;
12143
7e874846afe3 Toss code around
unc0rr
parents: 12138
diff changeset
     5
mod handlers;