diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 3ff64431933..9d58b19f77f 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -488,3 +488,11 @@ emp_act ..() return + +/mob/living/carbon/human/experience_pressure_difference(pressure_difference, direction) + if(shoes) + if(istype(shoes,/obj/item/clothing/shoes/magboots)) //TODO: Make a not-shit shoe var system to negate airflow. + var/obj/item/clothing/shoes/magboots/MB = shoes + if(MB.magpulse) + return 0 + ..() \ No newline at end of file