mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-19 07:56:02 +01:00
fix(settings): swapped variable order
Locale was moved.
This commit is contained in:
@@ -81,8 +81,8 @@ RegisterCommand('ox_lib', function()
|
|||||||
|
|
||||||
if not input then return end
|
if not input then return end
|
||||||
|
|
||||||
---@type string, string, boolean
|
---@type boolean, string, string
|
||||||
local locale, notification_position, notification_audio = table.unpack(input)
|
local notification_audio, notification_position, locale = table.unpack(input)
|
||||||
|
|
||||||
if set('locale', locale) then lib.setLocale(locale) end
|
if set('locale', locale) then lib.setLocale(locale) end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user