Fixed bug with custom changelling gets his absosrb objective always failed.

Fixed runtime error when cyborg (or sometimes AI) looks at paper.
Healing in cryo without cryoaxodone now works correctly. (slow as before)
Fixed some more runtime errors.
Fixed heal_organ_damage for non-humans. Slitt have to do a lot of work here.


git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1305 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
rastaf.zero@gmail.com
2011-03-28 23:13:58 +00:00
parent af37c522e2
commit 9927cd9de7
9 changed files with 44 additions and 23 deletions
+3 -1
View File
@@ -240,7 +240,9 @@ datum/mind
if (istype(objective, /datum/objective/absorb))
def_num = objective:num_to_eat
var/num_to_eat = input("Number to eat:", "Objective", def_num) as text
var/num_to_eat = input("Number to eat:", "Objective", def_num) as num|null
if (isnull(num_to_eat))
return
new_objective = new /datum/objective/absorb
new_objective.owner = src
new_objective:num_to_eat = num_to_eat