From aacae884cac8791bed37345e1f83ceaf7f441ae6 Mon Sep 17 00:00:00 2001 From: ppi13 Date: Fri, 4 Jun 2021 11:50:03 +0200 Subject: [PATCH] Fixes #16019 (#16021) * Fixes #16019 * Adds a way to 'drop' the kiss without throwing it. * A better way to fix this * Fixes fuckups, and make it work. * Fixes #16019 Adds a way to 'drop' the kiss without throwing it. A better way to fix this Fixes fuckups, and make it work. --- code/game/objects/items.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 28a2006e0aa..138708f4f81 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -288,6 +288,9 @@ GLOBAL_DATUM_INIT(fire_overlay, /image, image("icon" = 'icons/goonstation/effect if(!user.unEquip(src, silent = TRUE)) return 0 + if(flags & ABSTRACT) + return 0 + else if(isliving(loc)) return 0