]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Declare more ints as ints
authorTimePath <andrew.hardaker1995@gmail.com>
Sat, 25 Apr 2015 06:00:13 +0000 (16:00 +1000)
committerTimePath <andrew.hardaker1995@gmail.com>
Sun, 26 Apr 2015 08:04:40 +0000 (18:04 +1000)
qcsrc/client/waypointsprites.qh
qcsrc/server/defs.qh
qcsrc/server/mutators/base.qc
qcsrc/server/mutators/mutator_nix.qc
qcsrc/server/mutators/mutator_overkill.qc
qcsrc/server/pathlib/expandnode.qc
qcsrc/server/vehicles/vehicles.qc

index 3822793da1d0ef2b34260a07a850af138e9ab601..2a2b4cb868941477c71e3c4fed7a40ea34cd8cfd 100644 (file)
@@ -31,7 +31,7 @@ float waypointsprite_alpha;
 .string netname; // primary picture
 .string netname2; // secondary picture
 .string netname3; // tertiary picture
-.float team; // team that gets netname2
+.int team; // team that gets netname2
 .float lifetime;
 .float fadetime;
 .float maxdistance;
index 54d1ed041f3afda186a7689a674ea572e3a0612b..eeb6e44b95cb0a741690ac7dc253c9f4ed3ead2e 100644 (file)
@@ -250,7 +250,7 @@ float nJoinAllowed(entity ignore);
 
 .entity flagcarried;
 
-.float playerid;
+.int playerid;
 float playerid_last;
 .float noalign;                // if set to 1, the item or spawnpoint won't be dropped to the floor
 
index e13919a23b174b5372f301b06070bfe31c0182df..71bcd9e58700f3f78b824d317ccab2902f5593c4 100644 (file)
@@ -95,7 +95,7 @@ const float MAX_MUTATORS = 15;
 string loaded_mutators[MAX_MUTATORS];
 float Mutator_Add(mutatorfunc_t func, string name)
 {
-       float i, j;
+       int i, j;
        j = -1;
        for(i = 0; i < MAX_MUTATORS; ++i)
        {
@@ -128,7 +128,7 @@ float Mutator_Add(mutatorfunc_t func, string name)
 }
 void Mutator_Remove(float(float) func, string name)
 {
-       float i;
+       int i;
        for(i = 0; i < MAX_MUTATORS; ++i)
                if(name == loaded_mutators[i])
                        break;
index a0ec6adaa020ca3d2273ee988886fe1e642d14d0..ec5574527de33f524b935a3d616761290d1f6236 100644 (file)
@@ -1,6 +1,6 @@
 float g_nix_with_blaster;
 // WEAPONTODO
-float nix_weapon;
+int nix_weapon;
 float nix_nextchange;
 float nix_nextweapon;
 .float nix_lastchange_id;
index 78a61510602787209533b227e909982e2d63d304..a0198077dd1290e0b462945ee777df93edc68cbe 100644 (file)
@@ -1,4 +1,4 @@
-void ok_DecreaseCharge(entity ent, float wep)
+void ok_DecreaseCharge(entity ent, int wep)
 {
        if(!ent.ok_use_ammocharge) return;
 
index 4427f9b7fd03f432fc23a6c9d370ebb36629d672..47f160244c1ac61d8680f034e590f86dfb9d5173 100644 (file)
@@ -5,7 +5,7 @@ float  plib_fvals[8];
 float pathlib_expandnode_starf(entity node, vector start, vector goal)
 {
     vector where,f,r,t;
-    float i,fc,fc2,c;
+    float fc,fc2,c;
     entity nap;
 
     where = node.origin;
@@ -37,7 +37,7 @@ float pathlib_expandnode_starf(entity node, vector start, vector goal)
     // Back-left
     plib_points[7] = where - f - r;
 
-    for(i=0;i < 8; ++i)
+    for(int i=0;i < 8; ++i)
     {
         t = plib_points[i];
         fc  = pathlib_heuristic(t,goal) + pathlib_cost(node, t, pathlib_gridsize);
@@ -50,7 +50,7 @@ float pathlib_expandnode_starf(entity node, vector start, vector goal)
     vector bp;
     bp = plib_points[0];
     fc2 = 0;
-    for(i = 0; i < 8; ++i)
+    for(int i = 0; i < 8; ++i)
     {
         c = 0;
         nap = pathlib_nodeatpoint(plib_points[i]);
@@ -80,7 +80,7 @@ float pathlib_expandnode_starf(entity node, vector start, vector goal)
 
     pathlib_makenode(node, start, bp, goal, pathlib_gridsize);
 
-    for(i = 0; i < 3; ++i)
+    for(int i = 0; i < 3; ++i)
     {
         pathlib_makenode(node, start, plib_points2[i], goal, pathlib_gridsize);
     }
index e29c235199d221f44d6d10cf434192580e1ade34..09beb16cc3708a0222c36b81828df16e896e0ddd 100644 (file)
@@ -44,7 +44,7 @@ float SendAuxiliaryXhair(entity to, int sf)
     return true;
 }
 
-void UpdateAuxiliaryXhair(entity own, vector loc, vector clr, float axh_id)
+void UpdateAuxiliaryXhair(entity own, vector loc, vector clr, int axh_id)
 {
     if (!IS_REAL_CLIENT(own))
         return;