From 79f9ca537a5a5021adf43ff55da922057bc8e20e Mon Sep 17 00:00:00 2001 From: Theos Date: Thu, 4 Nov 2021 09:41:14 -0400 Subject: [PATCH] fixes coin mint not working at all (#12594) * fixes coin mint not working at all * Update machine_processing.dm --- code/modules/mining/machine_processing.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/machine_processing.dm b/code/modules/mining/machine_processing.dm index 02d237f3bad7..a86d30eb6419 100644 --- a/code/modules/mining/machine_processing.dm +++ b/code/modules/mining/machine_processing.dm @@ -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)