We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16887ee commit 6f56064Copy full SHA for 6f56064
1 file changed
src/Native/Arena.ts
@@ -252,6 +252,10 @@ export default class ArenaEntity extends Entity implements TeamGroupEntity {
252
// Otherwise, proceed as usual
253
client.createAndSpawnPlayer(name);
254
255
+ if (camera.cameraData.values.flags & CameraFlags.gameWaitingStart) { // Hide countdown screen
256
+ camera.cameraData.values.flags &= ~CameraFlags.gameWaitingStart;
257
+ }
258
+
259
// Remove this client from waiting list once this is done
260
this.game.clientsAwaitingSpawn.delete(client);
261
}
0 commit comments