From 68fd13b90c75a7087c3c5ac673b3de8b36f36aa3 Mon Sep 17 00:00:00 2001 From: Rob Nelson Date: Sun, 5 Jan 2014 19:32:40 -0800 Subject: [PATCH] Fix fire extinguisher not being fillable with the top off. --- code/game/objects/items/weapons/extinguisher.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/extinguisher.dm b/code/game/objects/items/weapons/extinguisher.dm index cfd18e0fb08..ec563a13a90 100644 --- a/code/game/objects/items/weapons/extinguisher.dm +++ b/code/game/objects/items/weapons/extinguisher.dm @@ -82,7 +82,7 @@ flags &= ~OPENCONTAINER return - if (istype(W, /obj/item)) + if (istype(W, /obj/item) && !is_open_container()) if(W.w_class>1) user << "\The [W] won't fit into the nozzle!" return @@ -212,4 +212,4 @@ step(user, user.inertia_dir) else return ..() - return \ No newline at end of file + return