Skip to content

Commit

Permalink
Grammar fix, fix string output
Browse files Browse the repository at this point in the history
  • Loading branch information
Rykka-Stormheart committed Jul 21, 2020
1 parent d9346df commit 175cfb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/food/kitchen/cooking_machines/container.dm
Expand Up @@ -26,7 +26,7 @@
var/string = "It contains....</br>"
for (var/atom/movable/A in contents)
string += "[A.name] </br>"
. += "<span class='notice'>string</span>"
. += "<span class='notice'>[string]</span>"
if (reagents.total_volume)
. += "<span class='notice'>It contains [reagents.total_volume]u of reagents.</span>"

Expand All @@ -41,7 +41,7 @@
if(!user.unEquip(I))
return
I.forceMove(src)
to_chat(user, "<span class='notice'>You put the [I] into the [src]</span>")
to_chat(user, "<span class='notice'>You put the [I] into the [src].</span>")
return

/obj/item/weapon/reagent_containers/cooking_container/verb/empty()
Expand Down

0 comments on commit 175cfb5

Please sign in to comment.