From 51d78df1c33835659cffe3852da77f0e97c27ab8 Mon Sep 17 00:00:00 2001
From: silicons <2003111+silicons@users.noreply.github.com>
Date: Wed, 19 Jul 2023 23:31:59 -0700
Subject: [PATCH] fixes inducers deleting cells (#5732)
---
code/game/objects/items/inducer.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/game/objects/items/inducer.dm b/code/game/objects/items/inducer.dm
index 585f06919872..d807d6a8631c 100644
--- a/code/game/objects/items/inducer.dm
+++ b/code/game/objects/items/inducer.dm
@@ -168,7 +168,7 @@
if(opened && cell)
user.visible_message("[user] removes [cell] from [src]!", "You remove [cell].")
cell.update_icon()
- user.put_in_hands(cell)
+ user.put_in_hands_or_drop(cell)
cell = null
update_icon()