]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Boolinterize
authorMario <zacjardine@y7mail.com>
Fri, 21 Aug 2015 05:45:53 +0000 (15:45 +1000)
committerMario <zacjardine@y7mail.com>
Fri, 21 Aug 2015 05:45:53 +0000 (15:45 +1000)
qcsrc/common/effects.qc
qcsrc/common/effects.qh

index 8fe7a97d7c4fa2fb062a1a7b9d8ccb4b3e97176f..cddfd60e5d2b73235f7e5fa17c45ffbe812c9c09 100644 (file)
@@ -1,4 +1,4 @@
-void Create_Effect_Entity(float eff_name, string eff_string, float eff_trail)
+void Create_Effect_Entity(int eff_name, string eff_string, bool eff_trail)
 {
        entity eff;
        effects_ent[eff_name - 1] = eff = spawn();
@@ -10,24 +10,24 @@ void Create_Effect_Entity(float eff_name, string eff_string, float eff_trail)
 }
 
 #ifdef CSQC
-void Read_Effect(float is_new)
+void Read_Effect(bool is_new)
 {
 #if EFFECTS_COUNT >= 255
-       float net_name = ReadShort();
+       int net_name = ReadShort();
 #else
-       float net_name = ReadByte();
+       int net_name = ReadByte();
 #endif
 
        entity eff = effects_ent[net_name - 1];
 
        vector v, vel = '0 0 0';
-       float eff_cnt = 1;
-       float eff_trail = eff.eent_eff_trail;
+       int eff_cnt = 1;
+       bool eff_trail = eff.eent_eff_trail;
        v_x = ReadCoord();
        v_y = ReadCoord();
        v_z = ReadCoord();
 
-       float use_vel = ReadByte();
+       bool use_vel = ReadByte();
        if(use_vel)
        {
                vel_x = ReadCoord();
@@ -47,7 +47,7 @@ void Read_Effect(float is_new)
 #endif
 
 #ifdef SVQC
-float Net_Write_Effect(entity client, float sf)
+bool Net_Write_Effect(entity client, int sf)
 {
        WriteByte(MSG_ENTITY, ENT_CLIENT_EFFECT);
 #if EFFECTS_COUNT >= 255
index 2b645813c303bf270d3108bd87d0a86d6b2b949a..5262dee5437f03b556d1086ea1a5d481d8296109 100644 (file)
 #ifdef CSQC
 void Read_Effect(bool is_new);
 #elif defined(SVQC)
-void Send_Effect(string eff_name, vector eff_loc, vector eff_vel, float eff_cnt);
+void Send_Effect(string eff_name, vector eff_loc, vector eff_vel, int eff_cnt);
 #endif
 
 const int EFFECT_FIRST = 1;