Skip to content

Commit

Permalink
Made Purchase Log Text rather than List
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuckleberry-Finn committed Feb 24, 2014
1 parent 8183f50 commit 82cfa67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions code/game/gamemodes/traitor/traitor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,7 @@
if(H.uplink_owner && H.uplink_owner==traitor.name)
TC_uses += H.used_TC
uplink_true=1
for(var/i in H.purchase_log)
purchases += i
purchases += H.purchase_log

if(uplink_true && !TC_uses) text+= "<br>"//EMBRACE THE GAP

Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/items/devices/uplinks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A list of items and costs is stored under the datum of every game mode, alongsid
var/welcome // Welcoming menu message
var/uses // Numbers of crystals
// List of items not to shove in their hands.
var/list/purchase_log = list()
var/purchase_log = ""
var/show_description = null
var/active = 0

Expand Down

0 comments on commit 82cfa67

Please sign in to comment.