From c60487375b6bc35ed13259935e9a6824170e1b3d Mon Sep 17 00:00:00 2001 From: Eric Meehan Date: Wed, 15 Apr 2026 18:34:36 -0400 Subject: [PATCH] /bounties string --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index fd5db07..e686b5d 100644 --- a/init.lua +++ b/init.lua @@ -187,7 +187,7 @@ core.register_chatcommand('bounties', { privs = { interact = true }, func = function(name, params) for key, value in pairs(bounty.data) do - core.chat_send_player(name, key .. ' - ' .. bounty.get_player_bounty(key)) + core.chat_send_player(name, key .. ' - $' .. bounty.get_player_bounty(key):split(" ")[2] .. "00") end end })