[MIRROR] Adds descriptions to all cargo orders! (#5917)

* Adds descriptions to all cargo orders!

* recompiles tgui
This commit is contained in:
CitadelStationBot
2018-03-12 07:39:38 -05:00
committed by Poojawa
parent 68eb27820e
commit 544d7bcaf4
7 changed files with 209 additions and 187 deletions
+2 -1
View File
@@ -77,7 +77,8 @@
data["supplies"][P.group]["packs"] += list(list(
"name" = P.name,
"cost" = P.cost,
"id" = pack
"id" = pack,
"desc" = P.desc || P.name // If there is a description, use it. Otherwise use the pack's name.
))
data["cart"] = list()
+2 -1
View File
@@ -58,7 +58,8 @@
meme_pack_data[P.group]["packs"] += list(list(
"name" = P.name,
"cost" = P.cost,
"id" = pack
"id" = pack,
"desc" = P.desc || P.name // If there is a description, use it. Otherwise use the pack's name.
))
/obj/machinery/computer/cargo/express/ui_interact(mob/living/user, ui_key = "main", datum/tgui/ui = null, force_open = 0, datum/tgui/master_ui = null, datum/ui_state/state = GLOB.default_state) // Remember to use the appropriate state.
File diff suppressed because it is too large Load Diff