diff --git a/code/modules/mob/living/simple_animal/bot/medbot.dm b/code/modules/mob/living/simple_animal/bot/medbot.dm index 36af11d4f35..ba201216052 100644 --- a/code/modules/mob/living/simple_animal/bot/medbot.dm +++ b/code/modules/mob/living/simple_animal/bot/medbot.dm @@ -432,16 +432,16 @@ //They're injured enough for it! var/list/treat_me_for = list() - if(C.getBruteLoss() >= heal_threshold) + if(C.getBruteLoss() > heal_threshold) treat_me_for += BRUTE - if(C.getOxyLoss() >= (5 + heal_threshold)) + if(C.getOxyLoss() > (5 + heal_threshold)) treat_me_for += OXY - if(C.getFireLoss() >= heal_threshold) + if(C.getFireLoss() > heal_threshold) treat_me_for += BURN - if(C.getToxLoss() >= heal_threshold) + if(C.getToxLoss() > heal_threshold) treat_me_for += TOX if(damagetype_healer in treat_me_for) @@ -513,16 +513,16 @@ var/treatment_method var/list/potential_methods = list() - if(C.getBruteLoss() >= heal_threshold) + if(C.getBruteLoss() > heal_threshold) potential_methods += BRUTE - else if(C.getFireLoss() >= heal_threshold) + if(C.getFireLoss() > heal_threshold) potential_methods += BURN - else if(C.getOxyLoss() >= (5 + heal_threshold)) + if(C.getOxyLoss() > (5 + heal_threshold)) potential_methods += OXY - else if(C.getToxLoss() >= heal_threshold) + if(C.getToxLoss() > heal_threshold) potential_methods += TOX for(var/i in potential_methods)