]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/weapons/weapon/shotgun.qc
Deprecate weapon_func
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / weapons / weapon / shotgun.qc
index 814d5730368d3ec40c1bb3c405efee9a492d001e..d2e58836f3e8f17014c538bbd47857c045195d4e 100644 (file)
@@ -195,7 +195,7 @@ void W_Shotgun_Attack2(void)
 // alternate secondary weapon frames
 void W_Shotgun_Attack3_Frame2()
 {SELFPARAM();
-       if (!WEP_ACTION(self.weapon, WR_CHECKAMMO2))
+       if (!_WEP_ACTION(self.weapon, WR_CHECKAMMO2))
        if (!(self.items & IT_UNLIMITED_WEAPON_AMMO))
        {
                W_SwitchWeapon_Force(self, w_getbestweapon(self));
@@ -209,7 +209,7 @@ void W_Shotgun_Attack3_Frame2()
 }
 void W_Shotgun_Attack3_Frame1()
 {SELFPARAM();
-       if (!WEP_ACTION(self.weapon, WR_CHECKAMMO2))
+       if (!_WEP_ACTION(self.weapon, WR_CHECKAMMO2))
        if (!(self.items & IT_UNLIMITED_WEAPON_AMMO))
        {
                W_SwitchWeapon_Force(self, w_getbestweapon(self));
@@ -223,7 +223,7 @@ void W_Shotgun_Attack3_Frame1()
 
 .float shotgun_primarytime;
 
-float W_Shotgun(float req)
+float W_Shotgun(entity thiswep, float req)
 {SELFPARAM();
        float ammo_amount;
        switch(req)
@@ -243,7 +243,7 @@ float W_Shotgun(float req)
                        {
                                // don't force reload an empty shotgun if its melee attack is active
                                if(WEP_CVAR(shotgun, secondary) < 2)
-                                       WEP_ACTION(self.weapon, WR_RELOAD);
+                                       _WEP_ACTION(self.weapon, WR_RELOAD);
                        }
                        else
                        {
@@ -347,7 +347,7 @@ float W_Shotgun(float req)
 #endif
 #ifdef CSQC
 .float prevric;
-float W_Shotgun(float req)
+float W_Shotgun(entity thiswep, float req)
 {SELFPARAM();
        switch(req)
        {