[MIRROR] [no gbp] orm correctly displays borg id data [MDB IGNORE] (#19707)

* [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
/🆑

* [no gbp] orm correctly displays borg id data

---------

Co-authored-by: SMOSMOSMOSMOSMO <95004236+SmoSmoSmoSmok@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-03-07 10:41:14 -08:00
committed by GitHub
co-authored by SMOSMOSMOSMOSMO
parent 007c9cf9e0
commit 5eed69ba74
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)