Toggle navigation
Toggle navigation
This project
Loading...
Sign in
강동현
/
nodejs-game
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Overnap
2021-06-10 03:56:46 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7ece7184e519b6703bf39b05e01e0e98f2764b02
7ece7184
1 parent
da329fcd
Ready에서 게임 시작이 불가능하던 문제 수정
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
web/src/components/room/Ready.tsx
web/src/components/room/Ready.tsx
View file @
7ece718
...
...
@@ -33,7 +33,7 @@ export const Ready: React.FC<ReadyProps> = ({ users }) => {
const handleReady = useCallback(() => {
if (isAdmin && isAllReady) {
const rawMessage: RawMessage = {
type: MessageType.ROOM_
READY
,
type: MessageType.ROOM_
START
,
message: {}
}
socket.emit('msg', rawMessage, () => {});
...
...
Please
register
or
login
to post a comment