From f90161b82dc25684ac84e0d615d76fad59238dfe Mon Sep 17 00:00:00 2001 From: Dude495 <40000573+Dude495@users.noreply.github.com> Date: Fri, 17 Oct 2025 17:42:26 -0500 Subject: [PATCH] Update config.lua added img field to CustomCashRegisters to fix broken image display when using them --- config.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.lua b/config.lua index 069a8cd..7f74f3f 100644 --- a/config.lua +++ b/config.lua @@ -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 \ No newline at end of file + +end