diff --git a/code/modules/clothing/spacesuits/rig/modules/specific/ai_container.dm b/code/modules/clothing/spacesuits/rig/modules/specific/ai_container.dm index 56e9aadc046..53946f786d9 100644 --- a/code/modules/clothing/spacesuits/rig/modules/specific/ai_container.dm +++ b/code/modules/clothing/spacesuits/rig/modules/specific/ai_container.dm @@ -104,7 +104,7 @@ return 1 // Okay, it wasn't a terminal being touched, check for all the simple insertions. - if(input_device.type in list(/obj/item/paicard, /obj/item/mmi, /obj/item/mmi/digital/posibrain)) + if(istype(input_device, /obj/item/paicard) || istype(input_device, /obj/item/mmi)) if(integrated_ai) integrated_ai.attackby(input_device,user) // If the transfer was successful, we can clear out our vars. diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index 83a08569a59..43e3878aff4 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -1007,7 +1007,7 @@ wearer_move_delay += 2 return wearer.buckled.relaymove(wearer,direction) - var/power_cost = 200 + var/power_cost = 50 if(!ai_moving) power_cost = 20 cell.use(power_cost) //Arbitrary, TODO