Lowers minimum healing bound for Medibots.

This commit is contained in:
chaoko99
2019-05-30 12:07:21 -07:00
parent 6cffb5d358
commit 859709ef60
2 changed files with 38 additions and 2 deletions

View File

@@ -204,8 +204,8 @@
else if((href_list["adj_threshold"]) && (!locked || issilicon(usr)))
var/adjust_num = text2num(href_list["adj_threshold"])
heal_threshold += adjust_num
if(heal_threshold < 5)
heal_threshold = 5
if(heal_threshold <= 0)
heal_threshold = 0.1
if(heal_threshold > 75)
heal_threshold = 75