mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
* Fix Corepatch AS50 magazine spawn
The Corepatch broke some of the AS50 magazine spawns. Im not sure why it happend sometimes and sometimes not.
This message showed up sometimes: No entry 'bin\config.bin/CfgMagazines-5Rnd_127x99_as50_CP'.
The CorePatch use that:
e0d06f7086/CorePatch_CIT_14888/config.cpp
This commit should fix that error message and the AS50 name as well.
* Define 5Rnd_127x99_as50_CP class
* Update AS50 fix
* Revert AS50 ammo fix
23 lines
700 B
C++
23 lines
700 B
C++
#include "Melee.hpp"
|
|
|
|
#define COMBINE_MAG class CombineMag\
|
|
{\
|
|
text = $STR_MAG_COMBINE;\
|
|
script = "spawn player_combineMag;";\
|
|
};
|
|
|
|
#include "9x18.hpp" //Makarov
|
|
#include "9x19.hpp" //MP5, PDW, Bizon, M9, G17
|
|
#include "45ACP.hpp" //Colt M1911, Revolver
|
|
#include "545x39.hpp" //AK74, RPK74
|
|
#include "556x45.hpp" //M249, STANAG, G36
|
|
#include "762x39.hpp" //AK47, SA58
|
|
#include "762x51.hpp" //M240, FN FAL, DMR, M24
|
|
#include "762x54r.hpp" //PK, SVD, Mosin
|
|
#include "Misc.hpp" //CZ550, Lee-Enfield, Winchester 1866
|
|
#include "Shotgun.hpp"
|
|
#include "Arrows.hpp"
|
|
#include "LauncherAmmo.hpp"
|
|
#include "127x99.hpp" //Remove after A2OA stable branch exceeds Version 1.63.131129
|
|
|
|
#undef COMBINE_MAG |