Skip to content

Commit c6699b8

Browse files
disable debug chance
1 parent 0714a73 commit c6699b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Native/Arena.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ export default class ArenaEntity extends Entity implements TeamGroupEntity {
307307
public spawnPlayer(tank: TankBody, client: Client) {
308308
if (client.camera) client.camera.relationsData.team = tank.relationsData.values.team;
309309

310-
if (Math.random() < 0.5 && TeamEntity.isTeam(tank.relationsData.values.team)) { // Spawning from factory
310+
if (Math.random() < 0.05 && TeamEntity.isTeam(tank.relationsData.values.team)) { // Spawning from factory
311311
const teamPlayers = this.getTeamPlayers(tank.relationsData.values.team as TeamEntity);
312312
for (const teammate of teamPlayers) {
313313
if (teammate.currentTank === Tank.Factory) {

0 commit comments

Comments
 (0)