[no gbp] orm correctly displays borg id data (#73808)

## About The Pull Request
this is a minor thing i forgot to add in my last PR, now the borg's name
will be displayed as well when interacting with the ORM rather than
displaying "no id detected"

## Why It's Good For The Game
## Changelog
🆑
qol: Borgs are now acknowledged by the orm
/🆑
This commit is contained in:
SMOSMOSMOSMOSMO
2023-03-07 13:39:43 +02:00
committed by GitHub
parent a3451b7fe4
commit abacca05d6
2 changed files with 15 additions and 11 deletions
@@ -252,6 +252,13 @@
"name" = card.registered_account.account_holder,
"cash" = card.registered_account.account_balance,
)
else if(issilicon(user))
var/mob/living/silicon/silicon_player = user
data["user"] = list(
"name" = silicon_player.name,
"cash" = "No valid account",
)
return data
/obj/machinery/mineral/ore_redemption/ui_static_data(mob/user)