diff --git a/code/modules/food&drinks/food/customizables.dm b/code/modules/food&drinks/food/customizables.dm index 168210ad21f..b2277ccd756 100644 --- a/code/modules/food&drinks/food/customizables.dm +++ b/code/modules/food&drinks/food/customizables.dm @@ -109,12 +109,14 @@ I.pixel_x = rand(-1,1) I.pixel_y = rand(-1,1) if(INGREDIENTS_STACK) - I.pixel_y = ingredients.len + I.pixel_x = rand(-1,1) + I.pixel_y = 2 * ingredients.len - 1 if(INGREDIENTS_STACKPLUSTOP) - I.pixel_y = ingredients.len + I.pixel_x = rand(-1,1) + I.pixel_y = 2 * ingredients.len - 1 overlays.Cut(ingredients.len) var/image/TOP = new(icon, "[icon_state]_top") - TOP.pixel_y = ingredients.len + 4 + TOP.pixel_y = 2 * ingredients.len + 3 overlays += I overlays += TOP return @@ -233,12 +235,12 @@ BS.reagents.trans_to(src, BS.reagents.total_volume) ingMax = ingredients.len //can't add more ingredients after that var/image/TOP = new(icon, "[BS.icon_state]") - TOP.pixel_y = ingredients.len + 4 + TOP.pixel_y = 2 * ingredients.len + 3 overlays += TOP if(istype(BS, /obj/item/weapon/reagent_containers/food/snacks/breadslice/custom)) var/image/O = new(icon, "[initial(BS.icon_state)]_filling") O.color = BS.filling_color - O.pixel_y = ingredients.len + 4 + O.pixel_y = 2 * ingredients.len + 3 overlays += O qdel(BS) return diff --git a/icons/obj/food.dmi b/icons/obj/food.dmi index 780b0bcc06e..22f0c696b30 100644 Binary files a/icons/obj/food.dmi and b/icons/obj/food.dmi differ diff --git a/icons/obj/food_ingredients.dmi b/icons/obj/food_ingredients.dmi index 6e122ca9a36..b5504ea1546 100644 Binary files a/icons/obj/food_ingredients.dmi and b/icons/obj/food_ingredients.dmi differ