]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
itthis isn't a word
authorMario <mario@smbclan.net>
Thu, 20 Oct 2016 21:32:32 +0000 (07:32 +1000)
committerMario <mario@smbclan.net>
Thu, 20 Oct 2016 21:32:32 +0000 (07:32 +1000)
qcsrc/common/monsters/monster/mage.qc
qcsrc/common/weapons/weapon/seeker.qc
qcsrc/server/bot/default/havocbot/roles.qc
qcsrc/server/cheats.qc

index 2015bcc475363a907449e40c2fbb2887ff68a79a..71bca32c64033b0fed60e56bbae2055c7c44dee6 100644 (file)
@@ -162,7 +162,7 @@ void M_Mage_Attack_Spike_Think(entity this)
                // Do evasive maneuvers for world objects? ( this should be a cpu hog. :P )
                if ((autocvar_g_monster_mage_attack_spike_smart) && vdist(eorg - this.origin, >, autocvar_g_monster_mage_attack_spike_smart_mindist))
                {
-                       // Is it a better idea (shorter distance) to trace to the target itthis?
+                       // Is it a better idea (shorter distance) to trace to the target itself?
                        if ( vlen2(this.origin + olddir * this.wait) < vlen2(eorg - this.origin))
                                traceline(this.origin, this.origin + olddir * this.wait, false, this);
                        else
index 268e1916edc91d0c9e3468c229946ff6ad7ff166..ffdbfc0d7053e704c88e9152d691ede046aa6d14 100644 (file)
@@ -152,7 +152,7 @@ void W_Seeker_Missile_Think(entity this)
                // Do evasive maneuvers for world objects? ( this should be a cpu hog. :P )
                if(WEP_CVAR(seeker, missile_smart) && (dist > WEP_CVAR(seeker, missile_smart_mindist)))
                {
-                       // Is it a better idea (shorter distance) to trace to the target itthis?
+                       // Is it a better idea (shorter distance) to trace to the target itself?
                        if( vdist(this.origin + olddir * this.wait, <, dist))
                                traceline(this.origin, this.origin + olddir * this.wait, false, this);
                        else
index dcf18ef19b1f3622a1eb12590ec66d937d51add9..677ef578e79bd6984a43dbb72c02736b9389e463 100644 (file)
@@ -156,7 +156,7 @@ void havocbot_goalrating_enemyplayers(entity this, float ratingscale, vector org
                                continue;
                }
 
-               // TODO: rate waypoints near the targetted player at that moment, instead of the player itthis
+               // TODO: rate waypoints near the targeted player at that moment, instead of the player itself
                //               adding a player as a goal seems to be quite dangerous, especially on space maps
                //               remove hack in navigation_poptouchedgoals() after performing this change
 
index 543a3f98d2174346e3fd61b27ae320ea15fd3f78..cf8a4569b30549598c800adf29d8a720d2cdb6e0 100644 (file)
@@ -164,7 +164,7 @@ float CheatImpulse(entity this, int imp)
                        this.personal.strength_finished = this.strength_finished;
                        this.personal.invincible_finished = this.invincible_finished;
                        this.personal.teleport_time = time;
-                       break; // this part itthis doesn't cheat, so let's not count this
+                       break; // this part itself doesn't cheat, so let's not count this
                case CHIMPULSE_CLONE_MOVING.impulse:
                        IS_CHEAT(this, imp, 0, 0);
                        makevectors (this.v_angle);