Compare commits
4 Commits
a3da783d06
...
3.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc9b20a89d | ||
| 61d3e2faf1 | |||
| 544039efbf | |||
|
15f7225a5f
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project badly attempts [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project badly attempts [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [3.1.1] - 2024-01-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Spelling Fixes
|
||||||
|
- Update class binding for vehicle flag interaction
|
||||||
|
|
||||||
## [3.1.0] - 2023-12-17
|
## [3.1.0] - 2023-12-17
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -80,8 +80,14 @@ milsim_vehicleflag_options = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
private _appliedParentClasses = [
|
||||||
|
"LandVehicle",
|
||||||
|
"Helicopter"
|
||||||
|
];
|
||||||
|
|
||||||
["AllVehicles", "InitPost", {
|
{
|
||||||
|
private _parentClass = _x;
|
||||||
|
[_parentClass, "InitPost", {
|
||||||
private _flagActionID = "SetVehicleFlag";
|
private _flagActionID = "SetVehicleFlag";
|
||||||
private _flagMasterAction = [
|
private _flagMasterAction = [
|
||||||
_flagActionID, // id
|
_flagActionID, // id
|
||||||
@@ -186,5 +192,6 @@ milsim_vehicleflag_options = [
|
|||||||
] call ace_interact_menu_fnc_addActionToObject;
|
] call ace_interact_menu_fnc_addActionToObject;
|
||||||
|
|
||||||
}, true, [], true] call CBA_fnc_addClassEventHandler;
|
}, true, [], true] call CBA_fnc_addClassEventHandler;
|
||||||
|
} forEach _appliedParentClasses;
|
||||||
|
|
||||||
nil;
|
nil;
|
||||||
Reference in New Issue
Block a user