mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +00:00
Fixes #8478
This commit is contained in:
@@ -870,8 +870,8 @@
|
|||||||
|
|
||||||
if(istype(O,/obj/item/weapon/storage/bag/plants))
|
if(istype(O,/obj/item/weapon/storage/bag/plants))
|
||||||
var/failed = 1
|
var/failed = 1
|
||||||
for (var/obj/item/G in O.contents)
|
for(var/obj/item/G in O.contents)
|
||||||
if(!O.reagents || !O.reagents.total_volume)
|
if(!G.reagents || !G.reagents.total_volume)
|
||||||
continue
|
continue
|
||||||
failed = 0
|
failed = 0
|
||||||
O.contents -= G
|
O.contents -= G
|
||||||
@@ -885,9 +885,9 @@
|
|||||||
return 1
|
return 1
|
||||||
|
|
||||||
if(!O.contents.len)
|
if(!O.contents.len)
|
||||||
user << "You fill \the [src]."
|
user << "You empty \the [O] into \the [src]."
|
||||||
else
|
else
|
||||||
user << "You fill \the [src]. Some of the things in the plant bag aren't suitable."
|
user << "You fill \the [src] from \the [O]."
|
||||||
|
|
||||||
src.updateUsrDialog()
|
src.updateUsrDialog()
|
||||||
return 0
|
return 0
|
||||||
|
|||||||
Reference in New Issue
Block a user