Fixes Fox Being A Moron

This commit is contained in:
Fox-McCloud
2017-08-03 00:30:56 -04:00
parent a56be89b76
commit 5443a3f6d3
2 changed files with 3 additions and 3 deletions
@@ -12,8 +12,8 @@
var/uses // -1 For inifinite
var/human_only = 0
var/active = 0
tough = 1 //not easily broken by combat damage
sterile = 1 //not very germy
tough = TRUE //not easily broken by combat damage
sterile = TRUE //not very germy
/obj/item/organ/internal/heart/gland/proc/ownerCheck()
if(ishuman(owner))
+1 -1
View File
@@ -30,7 +30,7 @@ var/list/organ_cache = list()
var/is_in_freezer = 0
var/sterile = FALSE //can the organ be infected by germs?
var/tough = TRUE //can organ be easily damaged?
var/tough = FALSE //can organ be easily damaged?
/obj/item/organ/Destroy()