diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index afc0c274a86..6787480caa5 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -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