fixes coin mint not working at all (#12594)

* fixes coin mint not working at all

* Update machine_processing.dm
This commit is contained in:
Theos
2021-11-04 09:41:14 -04:00
committed by GitHub
parent 4b351a747f
commit 79f9ca537a

View File

@@ -7,7 +7,7 @@
var/output_dir = SOUTH
/obj/machinery/mineral/proc/unload_mineral(atom/movable/S)
if(!istype(S, /obj/item/stack/ore) && !istype(S, /obj/item/stack/sheet)) // Realistically who is gonna shove a sheet into the loading machine --Redmoogle
if(!istype(S, /obj/item/stack/ore) && !istype(S, /obj/item/stack/sheet) && !istype(S, /obj/item/storage/bag/money)) // Realistically who is gonna shove a sheet into the loading machine --Redmoogle
return
S.forceMove(drop_location())
var/turf/T = get_step(src,output_dir)