fix(settings): swapped variable order

Locale was moved.
This commit is contained in:
Linden
2024-04-21 01:54:40 +10:00
parent b9452f9248
commit 196440250b

View File

@@ -81,8 +81,8 @@ RegisterCommand('ox_lib', function()
if not input then return end
---@type string, string, boolean
local locale, notification_position, notification_audio = table.unpack(input)
---@type boolean, string, string
local notification_audio, notification_position, locale = table.unpack(input)
if set('locale', locale) then lib.setLocale(locale) end