diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index c9d17aa173..1b07062553 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -187,6 +187,11 @@ w_class = WEIGHT_CLASS_TINY list_reagents = list("chlorine" = 3, "ammonia" = 1) +/obj/item/reagent_containers/food/urinalcake/attack_hand(mob/living/user) + user.visible_message("[user] squishes [src]!", "You squish [src].") + icon_state = "urinalcake_squish" + addtimer(VARSET_CALLBACK(src, icon_state, "urinalcake"), 8) + /obj/machinery/shower name = "shower" desc = "The HS-451. Installed in the 2550s by the Nanotrasen Hygiene Division." diff --git a/icons/obj/items_and_weapons.dmi b/icons/obj/items_and_weapons.dmi index a1abe445a7..43a6a127ce 100644 Binary files a/icons/obj/items_and_weapons.dmi and b/icons/obj/items_and_weapons.dmi differ