mule move fix (#14431)

This commit is contained in:
SteelSlayer
2020-09-25 00:50:50 -05:00
committed by GitHub
parent f5a6466c7d
commit ea13e78bae
@@ -460,7 +460,7 @@
on = 0
return
if(on)
var/speed = (wires.is_cut(WIRE_MOTOR1) ? 1 : 0) + (wires.is_cut(WIRE_MOTOR2) ? 2 : 0)
var/speed = (!wires.is_cut(WIRE_MOTOR1) ? 1 : 0) + (!wires.is_cut(WIRE_MOTOR2) ? 2 : 0)
var/num_steps = 0
switch(speed)
if(0)