Skip to content

Commit

Permalink
fix a comment that contained an invalid char.
Browse files Browse the repository at this point in the history
  • Loading branch information
gfgtdf committed Jun 29, 2014
1 parent 7185d6c commit 9ba544c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/server/server.cpp
Expand Up @@ -2592,7 +2592,11 @@ void server::process_data_game(const network::connection sock,
if (!g->is_owner(sock)) return;
g->level().root().apply_diff(*diff);
const simple_wml::node* cfg_change = diff->child("change_child");
if (cfg_change /*&& cfg_change->child("side") itÄ's very likeley that the diff cahnges a side so we dont loost with this check*/) {
if (cfg_change
/*&& cfg_change->child("side") it is very likeley that
the diff changes a side so this check isn't that important.
Note that [side] is not at toplevel but inside
[scenario] or [snapshot] */) {
g->update_side_data();
}
if (g->describe_slots()) {
Expand Down

0 comments on commit 9ba544c

Please sign in to comment.