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

RHS Compats - Fix RHS:USAF Mk11 Mod 0 EC barrel lenghts #7874

Merged
merged 1 commit into from Aug 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 10 additions & 1 deletion optionals/compat_rhs_usf3/CfgWeapons.hpp
Expand Up @@ -121,7 +121,16 @@ class CfgWeapons {
ACE_RailHeightAboveBore = 3.13162;
};
class rhs_weap_sr25_ec: rhs_weap_sr25 {
ACE_barrelTwist = 285.75;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inherited from rhs_weap_sr25 ....

ACE_barrelLength = 508.0;
ACE_RailHeightAboveBore = 3.13689;
};
class rhs_weap_sr25_d;
class rhs_weap_sr25_ec_d: rhs_weap_sr25_d {
ACE_barrelLength = 508.0;
ACE_RailHeightAboveBore = 3.13689;
};
class rhs_weap_sr25_wd;
class rhs_weap_sr25_ec_wd: rhs_weap_sr25_wd {
ACE_barrelLength = 508.0;
ACE_RailHeightAboveBore = 3.13689;
};
Expand Down