Fix cargo PDA app missing currency name (#94641)

## About The Pull Request

All the prices are just numbers theres no cr at the end

## Why It's Good For The Game

Bug fix

## Changelog
🆑
fix: fixed cargo PDA app missing currency name
/🆑
This commit is contained in:
Roxy
2025-12-29 21:39:12 -05:00
committed by GitHub
parent ea2f115899
commit 1eac3967a1
@@ -173,6 +173,8 @@
/datum/computer_file/program/budgetorders/ui_static_data(mob/user)
var/list/data = list()
data["max_order"] = CARGO_MAX_ORDER
data["displayed_currency_full_name"] = " [MONEY_NAME]"
data["displayed_currency_name"] = " [MONEY_SYMBOL]"
return data
/datum/computer_file/program/budgetorders/ui_act(action, params, datum/tgui/ui, datum/ui_state/state)