aboutsummaryrefslogtreecommitdiff
path: root/planetwars-matchrunner/src/pw_match.rs
diff options
context:
space:
mode:
Diffstat (limited to 'planetwars-matchrunner/src/pw_match.rs')
-rw-r--r--planetwars-matchrunner/src/pw_match.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/planetwars-matchrunner/src/pw_match.rs b/planetwars-matchrunner/src/pw_match.rs
index c114d78..c9a7f7b 100644
--- a/planetwars-matchrunner/src/pw_match.rs
+++ b/planetwars-matchrunner/src/pw_match.rs
@@ -74,7 +74,7 @@ impl PwMatch {
.iter()
.filter(|p| p.alive)
.map(move |player| {
- let state_for_player = pw_serializer::serialize_rotated(&state, player.id - 1);
+ let state_for_player = pw_serializer::serialize_rotated(state, player.id - 1);
match_ctx
.request(
player.id.try_into().unwrap(),
@@ -115,7 +115,7 @@ impl PwMatch {
})
.collect();
- return proto::PlayerAction::Commands(commands);
+ proto::PlayerAction::Commands(commands)
}
}