diff --git a/code/game/machinery/bioprinter.dm b/code/game/machinery/bioprinter.dm index ec0366547f..453e528bef 100644 --- a/code/game/machinery/bioprinter.dm +++ b/code/game/machinery/bioprinter.dm @@ -4,7 +4,7 @@ /obj/machinery/organ_printer name = "organ printer" desc = "It's a machine that prints organs." - icon = 'icons/obj/surgery.dmi' + icon = 'icons/obj/surgery_vr.dmi' //VOREStation Edit icon_state = "bioprinter" anchored = 1 @@ -69,11 +69,13 @@ return ..() /obj/machinery/organ_printer/update_icon() - overlays.Cut() + //VOREStation Edit + cut_overlays() if(panel_open) - overlays += "bioprinter_panel_open" + add_overlay("bioprinter_panel_open") if(printing) - overlays += "bioprinter_working" + add_overlay("bioprinter_working") + //VOREStation Edit End /obj/machinery/organ_printer/New() ..() diff --git a/icons/obj/surgery_vr.dmi b/icons/obj/surgery_vr.dmi index 9b0f9b8aed..7984e374c8 100644 Binary files a/icons/obj/surgery_vr.dmi and b/icons/obj/surgery_vr.dmi differ