diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 7554bb00ae..c425bbf8f4 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -170,8 +170,7 @@ if((materials.amount(MAT_METAL) >= metal_cost*multiplier*coeff) && (materials.amount(MAT_GLASS) >= glass_cost*multiplier*coeff)) busy = TRUE use_power(power) - icon_state = "autolathe" - flick("autolathe_n",src) + icon_state = "autolathe_n" var/time = is_stack ? 32 : 32*coeff*multiplier addtimer(CALLBACK(src, .proc/make_item, power, metal_cost, glass_cost, multiplier, coeff, is_stack), time) @@ -207,7 +206,7 @@ for(var/mat in materials_used) new_item.materials[mat] = materials_used[mat] / multiplier new_item.autolathe_crafted(src) - + icon_state = "autolathe" busy = FALSE updateDialog() diff --git a/icons/obj/stationobjs.dmi b/icons/obj/stationobjs.dmi index e4c1de0282..d657bd841b 100644 Binary files a/icons/obj/stationobjs.dmi and b/icons/obj/stationobjs.dmi differ