diff options
-rw-r--r-- | common/message.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/message.cpp b/common/message.cpp index 4552f2e..df687e4 100644 --- a/common/message.cpp +++ b/common/message.cpp @@ -139,9 +139,9 @@ Message::RoundState::RoundState() : BoostBase(Types::RoundState) { Message::RoundState::RoundState(const Player& pl_d, const Player& pl_r, const Player& pl_u, const Player& pl_l, const Tiles& d, const Actions& a) : BoostBase(Types::RoundState), dora(d), possible_actions(a) { players[0] = pl_d; - players[1] = pl_d; - players[2] = pl_d; - players[3] = pl_d; + players[1] = pl_r; + players[2] = pl_u; + players[3] = pl_l; } void Message::RoundState::serialize(boost::archive::text_oarchive& ar) { |