Skip to content

Commit

Permalink
feat: 강퇴 시 반환정보에 방정보 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kimday0326 committed Feb 28, 2024
1 parent afc2ee5 commit 34cee29
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ public void kickGameRoomMember(Long roomId, Long accountId, Long kickedId) {
KafkaMessage message = GameRoomMessage.builder()
.type(KICKED)
.roomId(gameRoom.getId())
.roomInfo(GameRoomGetResponse.from(gameRoom))
.exitMemberId(kickedId)
.allMembers(leftGameRoomMembers.stream().map(GameRoomMemberGetResponse::from).toList())
.build()
Expand Down

0 comments on commit 34cee29

Please sign in to comment.