Various fixes and bugfixes from live playtests

This commit is contained in:
Rykka
2020-07-20 23:33:30 -04:00
parent df7bb084f1
commit 93a4631005
6 changed files with 18 additions and 7 deletions

View File

@@ -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>"
@@ -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()