]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix compilation with gmqcc.
authorRudolf Polzer <divverent@xonotic.org>
Fri, 11 Oct 2013 14:54:39 +0000 (16:54 +0200)
committerRudolf Polzer <divverent@xonotic.org>
Fri, 11 Oct 2013 14:54:39 +0000 (16:54 +0200)
qcsrc/server/g_subs.qc
qcsrc/server/t_plats.qc

index 96ccc267c4e417613b8ed5f4a725750a077164b2..cc6f3694b9897bd3126c826b1a3d6e964e14e505 100644 (file)
@@ -188,6 +188,7 @@ void SUB_CalcMove_controller_think (void)
                        self.owner.angles_z -= 360 * floor((self.owner.angles_z - destangle_z) / 360 + 0.5);
                        angloc = destangle - self.owner.angles;
                        angloc = angloc * (1 / sys_frametime); // so it arrives for the next frame
+                       self.owner.avelocity = angloc;
                }
                if(nexttick < self.animstate_endtime)
                        veloc = nextpos - self.owner.origin;
@@ -196,7 +197,6 @@ void SUB_CalcMove_controller_think (void)
                veloc = veloc * (1 / sys_frametime); // so it arrives for the next frame
 
                self.owner.velocity = veloc;
-               self.owner.avelocity = angloc;
                self.nextthink = nexttick;
        } else {
                // derivative: delta + 2 * delta2 (e.g. for angle positioning)
index 9ca98afb897e361bce33687e6b721af5f115c1bb..97ae43e1e838d8129ea1c1435c54d86b12ea52f9 100644 (file)
@@ -336,8 +336,8 @@ void train_wait()
 
 void train_next()
 {
-       entity targ, cp;
-       vector cp_org;
+       entity targ, cp = world;
+       vector cp_org = '0 0 0';
 
        targ = find(world, targetname, self.target);
        self.target = targ.target;
@@ -348,8 +348,6 @@ void train_next()
                        cp = find(world, targetname, targ.curvetarget); // get its second target (the control point)
                        cp_org = cp.origin - self.view_ofs; // no control point found, assume a straight line to the destination
                }
-               else
-                       cp = world; // no cp
        }
        if (self.target == "")
                objerror("train_next: no next target");