Skip to content

Commit

Permalink
use security_checks
Browse files Browse the repository at this point in the history
  • Loading branch information
LetterN committed Nov 11, 2024
1 parent 6fa4253 commit 2268d86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/client/client_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
INVOKE_ASYNC(SSipintel, TYPE_PROC_REF(/datum/controller/subsystem/ipintel, vpn_connection_check), address, ckey)
// run onboarding gauntlet
INVOKE_ASYNC(src, PROC_REF(onboarding))
if (!security_checks_impl())
if (!security_checks())
return // GET OUT (assume client is dead)

//* Initialize Input *//
Expand Down
2 changes: 1 addition & 1 deletion code/modules/client/onboarding/security_checks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
/client/proc/security_checks()
// set waitfor = FALSE
// lock up login
security_checks_impl()
return security_checks_impl()

/client/proc/security_checks_impl()
// supplimentary checks for 512 n up. version check is down there
Expand Down

0 comments on commit 2268d86

Please sign in to comment.