Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix GM 3DEN attributes of BPz overwritten #117

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions addons/engineer/CfgVehicles.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,9 @@ class CfgVehicles {
};

// Assault Breacher Vehicle / MiRPz
class APC_Tracked_01_base_F;
class B_APC_Tracked_01_base_F: APC_Tracked_01_base_F {
class Attributes;
};
class B_APC_Tracked_01_base_F;
class B_APC_Tracked_01_CRV_F: B_APC_Tracked_01_base_F {
class Attributes: Attributes {
class Attributes {
class GVAR(mineClearing) {
displayName = CSTRING(mineClearingDisplayName);
property = QGVAR(enableMineClearing);
Expand Down
6 changes: 3 additions & 3 deletions addons/engineer/engineer_compat_gm/CfgVehicles.hpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class CfgVehicles {
class gm_Leopard1_base;
class gm_BPz2_base: gm_Leopard1_base {
class gm_tracked_Tank_base;
class gm_Leopard1_base: gm_tracked_Tank_base {
class Attributes;
};
class gm_BPz2a0_base: gm_BPz2_base {
class gm_BPz2_base: gm_Leopard1_base {
class Attributes: Attributes {
class GVAR(mineClearing) {
displayName = CSTRING(mineClearingDisplayName);
Expand Down