From 84f99fd35d423ab4fe40e326100bc9e1c47803bf Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Tue, 29 Aug 2023 15:38:32 -0400 Subject: [PATCH] fixed bug --- bank-client.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bank-client.lua b/bank-client.lua index 84cde2e..8cefab7 100644 --- a/bank-client.lua +++ b/bank-client.lua @@ -41,7 +41,7 @@ local function requestAuth(command, data, secure) if secure and not client.state.securityKey then return {success = false, error = "Missing security key for secure request."} end - autInfo.key = client.state.securityKey + authInfo.key = client.state.securityKey return requestRaw({command = command, auth = authInfo, data = data}) end