/bounties string

This commit is contained in:
2026-04-15 18:34:36 -04:00
parent eb85d42e00
commit c60487375b

View File

@@ -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
})