diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index f6b044a0da..e0db661c7f 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -274,6 +274,11 @@ desc = "A sign labelling a religious area." icon_state = "holy" +/obj/structure/sign/restroom + name = "\improper RESTROOM" + desc = "A sign labelling a restroom." + icon_state = "restroom" + /obj/structure/sign/xeno_warning_mining name = "DANGEROUS ALIEN LIFE" desc = "A sign that warns would-be travellers of hostile alien life in the vicinity." diff --git a/code/modules/food_and_drinks/drinks/drinks.dm b/code/modules/food_and_drinks/drinks/drinks.dm index 75d72c325c..c225ead61c 100644 --- a/code/modules/food_and_drinks/drinks/drinks.dm +++ b/code/modules/food_and_drinks/drinks/drinks.dm @@ -14,11 +14,6 @@ volume = 50 resistance_flags = 0 -/obj/item/weapon/reagent_containers/food/drinks/New() - ..() - pixel_x = rand(-5, 5) - pixel_y = rand(-5, 5) - /obj/item/weapon/reagent_containers/food/drinks/on_reagent_change() if (gulp_size < 5) gulp_size = 5 else gulp_size = max(round(reagents.total_volume / 5), 5) diff --git a/code/modules/food_and_drinks/food.dm b/code/modules/food_and_drinks/food.dm index f71a133ed3..473e9e6ec8 100644 --- a/code/modules/food_and_drinks/food.dm +++ b/code/modules/food_and_drinks/food.dm @@ -8,9 +8,10 @@ resistance_flags = FLAMMABLE var/foodtype = NONE var/last_check_time - -/obj/item/weapon/reagent_containers/food/New() - ..() + +/obj/item/weapon/reagent_containers/food/Initialize(mapload) + ..() + if(!mapload) pixel_x = rand(-5, 5) //Randomizes postion slightly. pixel_y = rand(-5, 5) diff --git a/icons/obj/decals.dmi b/icons/obj/decals.dmi index 4516886d65..0669549b02 100644 Binary files a/icons/obj/decals.dmi and b/icons/obj/decals.dmi differ