]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/casings.qc
Declare more ints as ints
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / casings.qc
index 2225c0f35260d6ac88320cc2027939d4ba5d528e..02e06001ece8b504e01ae8ac17badd35883bbe0d 100644 (file)
@@ -1,4 +1,4 @@
-.float silent;
+.bool silent;
 
 void Casing_Delete()
 {
@@ -44,16 +44,15 @@ void Casing_Touch()
                        if(time >= self.nextthink)
                        {
                                string s;
-                               float f;
+                               int f = floor(prandom() * 3) + 1;
 
-                               f = floor(prandom() * 3) + 1;
                                switch(self.state)
                                {
                                        case 1:
-                                               s = strcat("weapons/casings", ftos(f), ".wav");
+                                               s = strcat("weapons/casings", itos(f), ".wav");
                                                break;
                                        default:
-                                               s = strcat("weapons/brass", ftos(f), ".wav");
+                                               s = strcat("weapons/brass", itos(f), ".wav");
                                                break;
                                }
 
@@ -65,7 +64,7 @@ void Casing_Touch()
        self.nextthink = time + 0.2;
 }
 
-void Casing_Damage(float thisdmg, float hittype, vector org, vector thisforce)
+void Casing_Damage(float thisdmg, int hittype, vector org, vector thisforce)
 {
        if(thisforce_z < 0)
                thisforce_z = 0;