mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user