From 9e473c20a4b5b3b9fa34bda9ba73e3ee56dd192b Mon Sep 17 00:00:00 2001 From: HurgnDurgn <109288604+HurgnDurgn@users.noreply.github.com> Date: Sun, 17 Aug 2025 11:56:39 +1000 Subject: [PATCH] Cleanbots can now clean Cigbutts (#92570) No more roaches and rollies everywhere. Baby's first PR. ## About The Pull Request Adds cigbutts to the list of trash on cleanbots. Cleanbots will now melt and sweep cigarette butts, cigar butts, roaches, etc. ## Why It's Good For The Game Cigarette trash is still trash, and deserves to be melted like the rest of the trash. ## Changelog :cl: add: Cleanbots now clean up used cigarettes. /:cl: --- code/modules/mob/living/basic/bots/cleanbot/cleanbot.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/basic/bots/cleanbot/cleanbot.dm b/code/modules/mob/living/basic/bots/cleanbot/cleanbot.dm index 10e6bfdafac..0fe0a6fab67 100644 --- a/code/modules/mob/living/basic/bots/cleanbot/cleanbot.dm +++ b/code/modules/mob/living/basic/bots/cleanbot/cleanbot.dm @@ -106,6 +106,7 @@ /obj/item/trash, /obj/item/food/deadmouse, /obj/effect/decal/remains, + /obj/item/cigbutt, )) ///drawings we hunt var/static/list/cleanable_drawings = typecacheof(list(/obj/effect/decal/cleanable/crayon))