fixed an off-by-one error in changeling objective tracking

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@206 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
musketstgstation@gmail.com
2010-09-28 15:30:04 +00:00
parent d46127b168
commit 49d3762e46
+1 -1
View File
@@ -164,7 +164,7 @@ datum
explanation_text = "Absorb 5 compatible genomes."
check_completion()
if(owner.current.absorbed_dna.len > num_to_eat)
if(owner.current.absorbed_dna.len >= num_to_eat)
return 1
else
return 0