I said fixed.

This commit is contained in:
Pao
2023-01-12 22:32:33 +01:00
parent 2999fe7bf3
commit 650159a046
3 changed files with 13 additions and 8 deletions

View File

@@ -61,8 +61,10 @@ function FixSingleBodyPartType(body_part_type, use_oven)
body_part_type:setBleeding(false)
body_part_type:setBleedingTime(0) -- no bleeding since it's been cauterized
else
body_part_type:setBleeding(true);
body_part_type:setBleedingTime(ZombRand(1, 5)); -- Reset the bleeding, maybe make it random
-- TODO Think a little better about this
body_part_type:setBleeding(false)
--body_part_type:setBleedingTime(ZombRand(1, 5)) -- Reset the bleeding, maybe make it random
end
end