Skip to content

Commit

Permalink
3409 master (#3410)
Browse files Browse the repository at this point in the history
* Update script_version.hpp

* Update README.md

* Update fn_equipmentClassToCategories.sqf

* Update changelog.rst
  • Loading branch information
Bob-Murphy authored Oct 8, 2024
1 parent 858b653 commit c473bf8
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion A3A/addons/core/Includes/script_version.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define MAJOR 3
#define MINOR 7
#define PATCHLVL 0
#define PATCHLVL 1
#define BUILD 0
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ call {
if (getNumber (_config >> "rhs_disposable") == 1 or _mainmag == "CBA_fakeLauncherMagazine") then {
_categories pushBack "Disposable";
if (getNumber (_config >> "scope") == 1) exitWith { _categories set [0, "UsedLaunchers"] };
if (_mainmag == "CBA_fakeLauncherMagazine" and !isNil "cba_disposable_normalLaunchers") then {
_mainmag = (cba_disposable_normalLaunchers getVariable _classname) # 1; // format is [realLauncher, magazine]
if (_mainmag == "CBA_fakeLauncherMagazine" and !isNil "cba_disposable_normalLaunchers"and {typeName cba_disposable_normalLaunchers == "HASHMAP"}) then {
_mainmag = (cba_disposable_normalLaunchers get _classname) # 1; // format is [realLauncher, magazine]
};
};
if (_categories#0 == "UsedLaunchers") exitWith {};
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<p align="center">
<a href="https://github.com/official-antistasi-community/A3-Antistasi/releases/latest">
<img src="https://img.shields.io/badge/Latest_Version-3.7.0-blue.svg?style=flat-square" alt="Antistasi Version">
<img src="https://img.shields.io/badge/Latest_Version-3.7.1-blue.svg?style=flat-square" alt="Antistasi Version">
</a>
<a href="https://github.com/official-antistasi-community/A3-Antistasi/issues">
<img src="https://img.shields.io/github/issues/official-antistasi-community/A3-Antistasi?style=flat-square" alt="Issues">
Expand Down
19 changes: 19 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@ Changelog
==========


Version 3.7.1
===============

.. note::
8th October 2024

.. admonition:: Bugfixes

* :issue:`3409` Fix CUP disposable missile launchers breaking init after CBA 3.18 update

.. warning::

* Please note that this changelog may contain both spelling/grammatical errors and/or factual errors. Should any factual errors exist, we apologise but with the sheer number of changes made per version it can be easy to lose or mistake a change when writing up the changelog.

|
-----


Version 3.7.0
===============

Expand Down

0 comments on commit c473bf8

Please sign in to comment.