15 lines
370 B
Plaintext
15 lines
370 B
Plaintext
/mob/living/silicon/robot/Process_Spacemove(movement_dir = 0)
|
|
if(ionpulse())
|
|
return 1
|
|
return ..()
|
|
|
|
/mob/living/silicon/robot/mob_negates_gravity()
|
|
return magpulse
|
|
|
|
/mob/living/silicon/robot/mob_has_gravity()
|
|
return ..() || mob_negates_gravity()
|
|
|
|
/mob/living/silicon/robot/experience_pressure_difference(pressure_difference, direction)
|
|
if(!magpulse)
|
|
return ..()
|