From 4c8865bbd371b265e8012ac0b7f0f927290ab1b1 Mon Sep 17 00:00:00 2001 From: QuoteFox <49098813+quotefox@users.noreply.github.com> Date: Mon, 22 Feb 2021 01:45:29 +0000 Subject: [PATCH] ashtray now holds cig butts --- hyperstation/code/obj/ashtray.dm | 3 +++ 1 file changed, 3 insertions(+) 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