Skip to content

Commit

Permalink
Makes PDA pen slots accept penlights (#13339)
Browse files Browse the repository at this point in the history
  • Loading branch information
doaads committed Apr 29, 2023
1 parent 046081f commit 83a37e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/obj/item/device/pda2/pda2.dm
Expand Up @@ -659,7 +659,7 @@
C.set_loc(user.loc)
qdel(C)

else if (istype(C, /obj/item/pen) || istype(C, /obj/item/clothing/mask/cigarette))
else if (istype(C, /obj/item/pen) || istype(C, /obj/item/clothing/mask/cigarette) || istype(C, /obj/item/device/light/flashlight/penlight))
if (!src.pen)
src.insert_pen(C, user)
else
Expand Down

0 comments on commit 83a37e8

Please sign in to comment.