Skip to content

Commit

Permalink
refactor(client): Replace / with . for consistency when stating direc…
Browse files Browse the repository at this point in the history
…tories, loading the config
  • Loading branch information
vanishdevs committed Sep 18, 2024
1 parent 69a8ad9 commit 14529fa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/cl_antitheft.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Config = lib.load('shared/sh_antitheft')
local Config = lib.load('shared.sh_antitheft')

local notificationShown = false

Expand Down
2 changes: 1 addition & 1 deletion client/cl_blips.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Config = lib.load('shared/sh_blips')
local Config = lib.load('shared.sh_blips')

---@param EnableBlips (boolean) Enable or disable the custom blips
local function createCustomBlips(EnableBlips, BlipsTable)
Expand Down
2 changes: 1 addition & 1 deletion client/cl_discord.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Config = lib.load('shared/sh_discord')
local Config = lib.load('shared.sh_discord')

---@param EnableDiscordStatus (boolean) Enable or disable the discord status
local function DiscordStatus(EnableDiscordStatus)
Expand Down
2 changes: 1 addition & 1 deletion client/cl_idle.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Config = lib.load('shared/sh_idle')
local Config = lib.load('shared.sh_idle')

local isIdlePlaying = false
local lastActionTime = 0
Expand Down
2 changes: 1 addition & 1 deletion client/cl_toggleid.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Config = lib.load('shared/sh_toggleid')
local Config = lib.load('shared.sh_toggleid')
local showID = false

---@return (table) The nearest players
Expand Down
2 changes: 1 addition & 1 deletion client/main.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Config = lib.load('shared/sh_main')
local Config = lib.load('shared.sh_main')

local function performBasics()
local playerPed = cache.ped
Expand Down

0 comments on commit 14529fa

Please sign in to comment.