]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/weapons/w_vaporizer.qc
Update vaporizer function names
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / weapons / w_vaporizer.qc
index a9eec591f351cdc3bfe7dab3be96426dd7a25097..cc6a585178d7e8c91af4c8efcea6fe3c48d059d0 100644 (file)
@@ -1,7 +1,7 @@
 #ifdef REGISTER_WEAPON
 REGISTER_WEAPON(
 /* WEP_##id */ VAPORIZER,
-/* function */ w_vaporizer,
+/* function */ W_Vaporizer,
 /* ammotype */ ammo_cells,
 /* impulse  */ 7,
 /* flags    */ WEP_FLAG_RELOADABLE | WEP_FLAG_CANCLIMB | WEP_FLAG_SUPERWEAPON | WEP_TYPE_HITSCAN,
@@ -110,7 +110,7 @@ void W_Vaporizer_Attack (void)
        W_DecreaseAmmo(((g_minstagib) ? 1 : WEP_CVAR_PRI(vaporizer, ammo)));
 }
 
-float w_vaporizer(float req)
+float W_Vaporizer(float req)
 {
        float ammo_amount;
        float vaporizer_ammo;
@@ -248,7 +248,7 @@ float w_vaporizer(float req)
 }
 #endif
 #ifdef CSQC
-float w_vaporizer(float req)
+float W_Vaporizer(float req)
 {
        switch(req)
        {