Merge branch 'master' of https://github.com/tgstation/tgstation
This commit is contained in:
@@ -296,7 +296,7 @@ GLOBAL_LIST_EMPTY(crematoriums)
|
||||
/obj/structure/bodycontainer/crematorium/creamatorium/cremate(mob/user)
|
||||
var/list/icecreams = new()
|
||||
for(var/i_scream in GetAllContents(/mob/living))
|
||||
var/obj/item/reagent_containers/food/snacks/icecream/IC = new()
|
||||
var/obj/item/food/icecream/IC = new()
|
||||
IC.set_cone_type("waffle")
|
||||
IC.add_mob_flavor(i_scream)
|
||||
icecreams += IC
|
||||
|
||||
@@ -158,7 +158,7 @@
|
||||
|
||||
/obj/structure/urinal/Initialize()
|
||||
. = ..()
|
||||
hiddenitem = new /obj/item/reagent_containers/food/snacks/urinalcake
|
||||
hiddenitem = new /obj/item/food/urinalcake
|
||||
|
||||
/obj/structure/urinal/attack_hand(mob/user)
|
||||
. = ..()
|
||||
@@ -218,16 +218,16 @@
|
||||
return TRUE
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/urinalcake
|
||||
/obj/item/food/urinalcake
|
||||
name = "urinal cake"
|
||||
desc = "The noble urinal cake, protecting the station's pipes from the station's pee. Do not eat."
|
||||
icon = 'icons/obj/items_and_weapons.dmi'
|
||||
icon_state = "urinalcake"
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
list_reagents = list(/datum/reagent/chlorine = 3, /datum/reagent/ammonia = 1)
|
||||
foodtype = TOXIC | GROSS
|
||||
food_reagents = list(/datum/reagent/chlorine = 3, /datum/reagent/ammonia = 1)
|
||||
foodtypes = TOXIC | GROSS
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/urinalcake/attack_self(mob/living/user)
|
||||
/obj/item/food/urinalcake/attack_self(mob/living/user)
|
||||
user.visible_message("<span class='notice'>[user] squishes [src]!</span>", "<span class='notice'>You squish [src].</span>", "<i>You hear a squish.</i>")
|
||||
icon_state = "urinalcake_squish"
|
||||
addtimer(VARSET_CALLBACK(src, icon_state, "urinalcake"), 8)
|
||||
|
||||
Reference in New Issue
Block a user