Realistic Names - Fix bad inheritance from #10202 (#10225)

Fix bad inheritance from #10202
This commit is contained in:
johnb432 2024-08-19 07:51:37 +02:00 committed by GitHub
parent 35658e41cc
commit 81f44e6e7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1043,20 +1043,20 @@ class CfgVehicles {
}; };
// RPG-32 // RPG-32
class Weapon_launch_RPG32_ghex_F: Weapon_Base_F { class Weapon_launch_RPG32_ghex_F: Launcher_Base_F {
displayName = CSTRING(launch_RPG32_ghex); displayName = CSTRING(launch_RPG32_ghex);
}; };
// P99 // P99
class Weapon_hgun_P07_khk_F: Weapon_Base_F { class Weapon_hgun_P07_khk_F: Pistol_Base_F {
displayName = CSTRING(hgun_P07_khk); displayName = CSTRING(hgun_P07_khk);
}; };
class Weapon_hgun_P07_blk_F: Weapon_Base_F { class Weapon_hgun_P07_blk_F: Pistol_Base_F {
displayName = CSTRING(hgun_P07_blk); displayName = CSTRING(hgun_P07_blk);
}; };
// Makarov // Makarov
class Weapon_hgun_Pistol_01_F: Weapon_Base_F { class Weapon_hgun_Pistol_01_F: Pistol_Base_F {
displayName = CSTRING(hgun_Pistol_01); displayName = CSTRING(hgun_Pistol_01);
}; };
@ -1081,12 +1081,12 @@ class CfgVehicles {
}; };
// FNX-45 (Green) // FNX-45 (Green)
class Weapon_hgun_Pistol_heavy_01_green_F: Weapon_Base_F { class Weapon_hgun_Pistol_heavy_01_green_F: Pistol_Base_F {
displayName = CSTRING(hgun_Pistol_heavy_01_green_Name); displayName = CSTRING(hgun_Pistol_heavy_01_green_Name);
}; };
// RPG-32 (Green) // RPG-32 (Green)
class Weapon_launch_RPG32_green_F: Weapon_Base_F { class Weapon_launch_RPG32_green_F: Launcher_Base_F {
displayName = CSTRING(launch_RPG32_green_Name); displayName = CSTRING(launch_RPG32_green_Name);
}; };