mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
fixes coin mint not working at all (#12594)
* fixes coin mint not working at all * Update machine_processing.dm
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
var/output_dir = SOUTH
|
var/output_dir = SOUTH
|
||||||
|
|
||||||
/obj/machinery/mineral/proc/unload_mineral(atom/movable/S)
|
/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
|
return
|
||||||
S.forceMove(drop_location())
|
S.forceMove(drop_location())
|
||||||
var/turf/T = get_step(src,output_dir)
|
var/turf/T = get_step(src,output_dir)
|
||||||
|
|||||||
Reference in New Issue
Block a user