Skip to content

Commit

Permalink
Add missing content
Browse files Browse the repository at this point in the history
  • Loading branch information
AllRoundJonU committed Sep 8, 2024
1 parent fcea1ca commit 34a6705
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion bridge/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ if GetResourceState('ox_lib') ~= 'started' then
return
end


-- Function do get the farmework and core object of the server

--- Detect the framework of the server
Expand Down
2 changes: 0 additions & 2 deletions client/cl_selling.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,11 @@ if not Config.SellEverywhere['enabled'] then
thickness = v.thickness,
debug = Config.DebugPoly,
onEnter = function()
lib.print.info('Zone Entered: '..k)
CreateSellingTargets()
currentZone = k
if Config.Debug then lib.print.info("Entered Zone ["..k.."]") end
end,
onExit = function()
lib.print.info('Zone Exited: '..k)
currentZone = nil
RemoveSellTarget()
if Config.Debug then lib.print.info("Exited Zone ["..k.."]") end
Expand Down
4 changes: 3 additions & 1 deletion shared/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -477,8 +477,10 @@ Config.BlacklistPeds = {
Debug mode, you can see all kinds of prints/logs using debug,
but it's only for development.
]]
Config.ManualZoneChecker = false -- Set to true to enable the automatic zone checker
Config.ManualDatabaseSetup = false -- Set to true to disable the automatic database setup and check

Config.EnableVersionCheck = true -- Enable version check
Config.Branch = 'v1.3.0beta' -- Set to 'master' to use the master branch, set to 'development' to use the dev branch
Config.ManualDatabaseSetup = false -- Set to true to disable the automatic database setup and check
Config.Debug = false -- Set to true to enable debug mode
Config.DebugPoly = false -- Set to true to enable debug mode for PolyZone

0 comments on commit 34a6705

Please sign in to comment.