-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For new modlist - Fix PVT, NDS (#625)
* PTV - Fix UBC from recent update * Update bw.html and fiix XEH for NDS * also update `vn_m1carbine_shorty` ubc * Update lints.toml
- Loading branch information
1 parent
63e4326
commit 748cf65
Showing
6 changed files
with
120 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
[config.file_type] | ||
options.allow_no_extension = true | ||
|
||
[sqf] | ||
enabled = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#include "\z\potato\addons\miscFixes\script_component.hpp" | ||
#undef COMPONENT | ||
#define COMPONENT miscFixes_patchNDS | ||
|
||
class CfgPatches { | ||
class ADDON { | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = { "potato_core", "NDS_M224_mortar" }; | ||
skipWhenMissingDependencies = 1; | ||
author = "Bourbon Warfare"; | ||
authorUrl = "https://github.com/BourbonWarfare/POTATO"; | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
|
||
// fix broken XEH | ||
class CBA_Extended_EventHandlers; | ||
class CfgVehicles { | ||
class Mortar_01_base_F; | ||
class NDS_M224_mortar_base: Mortar_01_base_F { XEH_ENABLED; }; // "M224 Mortar base" 2472780935 | ||
class NDS_M224_mortar; | ||
class NDS_M224_mortar_AI: NDS_M224_mortar { XEH_ENABLED; }; // "M224 60mm Mortar - AI" 2472780935 | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters