Skip to content

Commit

Permalink
Cell() Update
Browse files Browse the repository at this point in the history
Was being output straight to the user, it looked like that might cause the order to be wrong.
Doing this because it looks like the intended results.
  • Loading branch information
psykzz committed Jan 4, 2015
1 parent 8f53dcb commit 249e19b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var/next_mob_id = 0
t+= "<span class='notice'>Plasma : [environment.toxins] \n</span>"
t+= "<span class='notice'>Carbon Dioxide: [environment.carbon_dioxide] \n</span>"
for(var/datum/gas/trace_gas in environment.trace_gases)
usr << "<span class='notice'>[trace_gas.type]: [trace_gas.moles] \n</span>"
t+= "<span class='notice'>[trace_gas.type]: [trace_gas.moles] \n</span>"

usr.show_message(t, 1)

Expand Down

0 comments on commit 249e19b

Please sign in to comment.