We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0714a73 commit c6699b8Copy full SHA for c6699b8
src/Native/Arena.ts
@@ -307,7 +307,7 @@ export default class ArenaEntity extends Entity implements TeamGroupEntity {
307
public spawnPlayer(tank: TankBody, client: Client) {
308
if (client.camera) client.camera.relationsData.team = tank.relationsData.values.team;
309
310
- if (Math.random() < 0.5 && TeamEntity.isTeam(tank.relationsData.values.team)) { // Spawning from factory
+ if (Math.random() < 0.05 && TeamEntity.isTeam(tank.relationsData.values.team)) { // Spawning from factory
311
const teamPlayers = this.getTeamPlayers(tank.relationsData.values.team as TeamEntity);
312
for (const teammate of teamPlayers) {
313
if (teammate.currentTank === Tank.Factory) {
0 commit comments