From 9759de58b664402df5f7eea1700d2713c4c5b840 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Fri, 26 Feb 2021 13:47:29 -0600 Subject: [PATCH] Add 2FA state to client class --- scripts/server/class.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/server/class.js b/scripts/server/class.js index 85a9cf8a..c7a1815a 100644 --- a/scripts/server/class.js +++ b/scripts/server/class.js @@ -171,6 +171,9 @@ function initClassTable() { this.syncPosition = null; this.syncHeading = null; + + this.twoFactorAuthenticationState = AG_2FA_STATE_NONE; + this.twoFactorAuthenticationCode = 0; } }, accountData: class {