diff --git a/hyperstation/code/obj/ashtray.dm b/hyperstation/code/obj/ashtray.dm index 003eb0ca..5246b6c7 100644 --- a/hyperstation/code/obj/ashtray.dm +++ b/hyperstation/code/obj/ashtray.dm @@ -12,3 +12,6 @@ to_chat(user, "You place [cig] in [src].") qdel(cig) //drop it in. + if (istype(I,/obj/item/cigbutt)) + to_chat(user, "You place [I] in [src].") + qdel(I) //drop it in. \ No newline at end of file