]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Remove a redundant check
authorterencehill <piuntn@gmail.com>
Thu, 28 Sep 2017 00:02:46 +0000 (02:02 +0200)
committerterencehill <piuntn@gmail.com>
Thu, 28 Sep 2017 00:02:46 +0000 (02:02 +0200)
qcsrc/server/bot/default/navigation.qc

index 11f78edf6f2ba9d5b59c21507ab747d7d7b57443..5de03e8afd3e8b6886d9047cc6d3227c9dba04c1 100644 (file)
@@ -1366,8 +1366,7 @@ int navigation_poptouchedgoals(entity this)
 
        // If for some reason the bot is closer to the next goal, pop the current one
        if(this.goalstack01 && !wasfreed(this.goalstack01))
-       if(vlen2(this.goalcurrent.origin - this.origin) > vlen2(this.goalstack01.origin - this.origin)
-               || vlen2(this.goalcurrent.origin - this.goalstack01.origin) > vlen2(this.goalstack01.origin - this.origin))
+       if(vlen2(this.goalcurrent.origin - this.goalstack01.origin) > vlen2(this.goalstack01.origin - this.origin))
        if(checkpvs(this.origin + this.view_ofs, this.goalstack01))
        {
                vector dest = '0 0 0';