Update config.lua

added img field to CustomCashRegisters to fix broken image display when using them
This commit is contained in:
Dude495
2025-10-17 17:42:26 -05:00
committed by GitHub
parent c6ef0897fc
commit f90161b82d

View File

@@ -84,6 +84,7 @@ Config = {
CustomCashRegisters = {
-- ["jobname"] = { -- Player job role restriction
-- img = "https://i.ibb.co/HfVy87fW/image.png", -- url to image file
-- { coords = vector4(0, 0, 0, 0), }, -- vector4 to place the till and the way it faces
-- { coords = vector4(0, 0, 0, 0), prop = true, }, -- "prop = true" spawns a prop at the coords
-- },
@@ -166,4 +167,5 @@ function locale(section, string)
if not localTable[section] then return "["..section.."] Invalid" end
if not localTable[section][string] then return "["..string.."] Invalid" end
return localTable[section][string]
end