]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/g_violence.qc
Even more floats to bool/int
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_violence.qc
index f034c0c4624e4d9a63387df27d9003c827323c5e..4ef4f45ff23e1b1453ab33ec3a3d775c393385b9 100644 (file)
@@ -1,4 +1,6 @@
-float Violence_GibSplash_SendEntity(entity to, float sf)
+#include "g_violence.qh"
+
+float Violence_GibSplash_SendEntity(entity to, int sf)
 {
        WriteByte(MSG_ENTITY, ENT_CLIENT_GIBSPLASH);
        WriteByte(MSG_ENTITY, self.state); // actually type
@@ -7,7 +9,7 @@ float Violence_GibSplash_SendEntity(entity to, float sf)
        WriteShort(MSG_ENTITY, floor(self.origin.y / 4)); // not using a coord here, as gibs don't need this accuracy
        WriteShort(MSG_ENTITY, floor(self.origin.z / 4)); // not using a coord here, as gibs don't need this accuracy
        WriteShort(MSG_ENTITY, self.oldorigin.x); // acrually compressed velocity
-       return TRUE;
+       return true;
 }
 
 // TODO maybe convert this to a TE?
@@ -38,7 +40,7 @@ void Violence_GibSplash_At(vector org, vector dir, float type, float amount, ent
 
        e.oldorigin_x = compressShortVector(e.velocity);
 
-       Net_LinkEntity(e, FALSE, 0.2, Violence_GibSplash_SendEntity);
+       Net_LinkEntity(e, false, 0.2, Violence_GibSplash_SendEntity);
 }
 
 void Violence_GibSplash(entity source, float type, float amount, entity attacker)