Skip to content

Commit

Permalink
[MIRROR] Fix invalid List.Join() in chemsmoke logging (#1927)
Browse files Browse the repository at this point in the history
* Fix invalid List.Join() in chemsmoke logging (#82573)

* Fix invalid List.Join() in chemsmoke logging

---------

Co-authored-by: Penelope Haze <[email protected]>
Co-authored-by: SomeRandomOwl <[email protected]>
  • Loading branch information
3 people authored and StealsThePRs committed Apr 11, 2024
1 parent 5ced4bd commit b6c36c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@
contained_reagents += "[reagent.volume]u [reagent]"

var/where = "[AREACOORD(location)]"
var/contained = length(contained_reagents) ? "[contained_reagents.Join(", ", " \[", "\]")] @ [chemholder.chem_temp]K" : null
var/contained = length(contained_reagents) ? "\[[contained_reagents.Join(", ")]\] @ [chemholder.chem_temp]K" : null
var/area/fluid_area = get_area(location)
if(carry.my_atom?.fingerprintslast) //Some reagents don't have a my_atom in some cases
var/mob/M = get_mob_by_key(carry.my_atom.fingerprintslast)
Expand Down

0 comments on commit b6c36c6

Please sign in to comment.