From 70905ba3120b40d5267fe4d9d4a6685c6c005b17 Mon Sep 17 00:00:00 2001 From: oranges Date: Tue, 13 Jun 2017 02:06:13 +0000 Subject: [PATCH] ore coin crossed runtime fix Make sure it checks for the proper type and not the parent type as AI's can actually move around the map --- code/modules/mining/ores_coins.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/ores_coins.dm b/code/modules/mining/ores_coins.dm index 93686cd7c8b..5cdf91ee623 100644 --- a/code/modules/mining/ores_coins.dm +++ b/code/modules/mining/ores_coins.dm @@ -36,7 +36,7 @@ if(istype(thing, /obj/item/weapon/storage/bag/ore)) OB = thing break - else if(issilicon(AM)) + else if(iscyborg(AM)) var/mob/living/silicon/robot/R = AM for(var/thing in R.module_active) if(istype(thing, /obj/item/weapon/storage/bag/ore))