Skip to content

Commit

Permalink
Remove tester requirement check
Browse files Browse the repository at this point in the history
Prod-level users should now be able to connect
  • Loading branch information
SuperMarioDaBom authored Mar 4, 2025
1 parent 3302e74 commit 5f3bf29
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions globals/password_from_pid.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,5 @@ func PasswordFromPID(pid types.PID) (string, uint32) {
return "", nex.ResultCodes.RendezVous.InvalidUsername
}

// * We only allow tester accounts for now
if response.AccessLevel < 1 {
globals.Logger.Errorf("PID %d is not a tester!", response.Pid)
return "", nex.ResultCodes.RendezVous.AccountDisabled
}

return response.Password, 0
}

0 comments on commit 5f3bf29

Please sign in to comment.