mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-21 03:56:47 +01:00
Fix rig pai slot not accepting Btype card, and buffed rig ai movement distance (#19343)
* feeexxxx * unneeded * actually why over complicate
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user