diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index 444c319334b..5ba3885faff 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -866,7 +866,7 @@ About the new airlock wires panel:
else if(istype(C, /obj/item/pai_cable)) // -- TLE
var/obj/item/pai_cable/cable = C
cable.plugin(src, user)
- else if(istype(C, /obj/item/paper) || istype(C, /obj/item/photo))
+ else if((istype(C, /obj/item/paper) && !istype(C, /obj/item/paper/talisman)) || istype(C, /obj/item/photo))
if(note)
to_chat(user, "There's already something pinned to this airlock! Use wirecutters or your hands to remove it.")
return
@@ -1348,7 +1348,7 @@ About the new airlock wires panel:
else
user.visible_message("[user] cuts down [note] from [src].", "You remove [note] from [src].")
playsound(src, 'sound/items/wirecutter.ogg', 50, 1)
- note.forceMove(get_turf(user))
+ user.put_in_hands(note)
note = null
update_icon()
return TRUE