mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 04:01:22 +00:00
accidental typo
This commit is contained in:
@@ -3,7 +3,7 @@ Config.Locale = 'en'
|
||||
|
||||
-- [Config.EnableCommands]
|
||||
-- Enables Commands Such As /char and /chardel
|
||||
Config.EnableCommands = ESX.GetConfig().Debug
|
||||
Config.EnableCommands = ESX.GetConfig().EnableDebug
|
||||
|
||||
Config.UseDeferrals = false -- EXPERIMENTAL Character Registration Method.
|
||||
|
||||
@@ -16,4 +16,4 @@ Config.LowestYear = 1900 -- 112 years old is the oldest you can be.
|
||||
Config.HighestYear = 2003 -- 18 years old is the youngest you can be.
|
||||
|
||||
Config.FullCharDelete = true -- Delete all reference to character.
|
||||
Config.EnableDebugging = ESX.GetConfig().Debug -- prints for debugging :)
|
||||
Config.EnableDebugging = ESX.GetConfig().EnableDebug -- prints for debugging :)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
local Debug = ESX.GetConfig().Debug
|
||||
local Debug = ESX.GetConfig().EnableDebug
|
||||
|
||||
---@param type string the notification type
|
||||
---@param length number the length of the notification
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Debug = ESX.GetConfig().Debug
|
||||
Debug = ESX.GetConfig().EnableDebug
|
||||
|
||||
---@param message any
|
||||
---@param type string
|
||||
|
||||
@@ -4,7 +4,7 @@ Config.DrawDistance = 10.0
|
||||
Config.ZoneSize = {x = 2.7, y = 2.7, z = 0.5}
|
||||
Config.MarkerColor = {r = 100, g = 200, b = 104}
|
||||
Config.MarkerType = 27
|
||||
Config.Debug = ESX.GetConfig().Debug
|
||||
Config.Debug = ESX.GetConfig().EnableDebug
|
||||
|
||||
|
||||
Config.Locale = 'en'
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Config = {}
|
||||
|
||||
Config.MaxDistance = 1.5
|
||||
Config.Debug = ESX.GetConfig().Debug
|
||||
Config.Debug = ESX.GetConfig().EnableDebug
|
||||
|
||||
Config.Interactables = {
|
||||
'prop_bench_01a',
|
||||
|
||||
Reference in New Issue
Block a user