Skip to content

Commit

Permalink
branch 충돌 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
comforest committed Jul 21, 2024
1 parent 8893f8b commit 41f542f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class MafiaGameMessengerImpl(
val message = MafiaGameReadyMessage(
MafiaGameReadyBody(
turn = i + 1,
player = player.toResponse(),
player = player.toResponse(mafiaGameInfo.room.owner),
),
)
messages[player.userId] = message
Expand All @@ -125,7 +125,7 @@ class MafiaGameMessengerImpl(

val mafiaPlayerResponses = turnList
.map {
it.toResponse()
it.toResponse(mafiaGameInfo.room.owner)
}.toList()

val message = MafiaPlayerTurnListMessage(
Expand Down

0 comments on commit 41f542f

Please sign in to comment.