]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Rename a variable in notif_arg_item_wepammo
authorterencehill <piuntn@gmail.com>
Thu, 8 Aug 2024 09:54:55 +0000 (11:54 +0200)
committerterencehill <piuntn@gmail.com>
Thu, 8 Aug 2024 09:54:55 +0000 (11:54 +0200)
qcsrc/common/notifications/all.qh

index 2ac682f96789c2f49739c6b58d11eb5311e68dca..e7e26a48e711eafadf6e0ab6d9a198f62ca651b5 100644 (file)
@@ -645,20 +645,20 @@ string notif_arg_spree_inf(float type, string input, string player, float spree)
 
 string notif_arg_item_wepammo(float f1, float f2)
 {
-       string ammoitems = "";
+       string ammotype = "";
        Weapon wep = REGISTRY_GET(Weapons, f1);
        // TODO: registry handles
        switch (wep.ammo_type)
        {
-               case RES_SHELLS:  ammoitems = ITEM_Shells.m_name;      break;
-               case RES_BULLETS: ammoitems = ITEM_Bullets.m_name;     break;
-               case RES_ROCKETS: ammoitems = ITEM_Rockets.m_name;     break;
-               case RES_CELLS:   ammoitems = ITEM_Cells.m_name;       break;
-               case RES_PLASMA:  ammoitems = ITEM_Plasma.m_name;      break;
-               case RES_FUEL:    ammoitems = ITEM_JetpackFuel.m_name; break;
+               case RES_SHELLS:  ammotype = ITEM_Shells.m_name;      break;
+               case RES_BULLETS: ammotype = ITEM_Bullets.m_name;     break;
+               case RES_ROCKETS: ammotype = ITEM_Rockets.m_name;     break;
+               case RES_CELLS:   ammotype = ITEM_Cells.m_name;       break;
+               case RES_PLASMA:  ammotype = ITEM_Plasma.m_name;      break;
+               case RES_FUEL:    ammotype = ITEM_JetpackFuel.m_name; break;
                default: return ""; // doesn't use ammo
        }
-       return sprintf(_(" with %d %s"), f2, strtolower(ammoitems));
+       return sprintf(_(" with %d %s"), f2, strtolower(ammotype));
 }