mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 04:23:13 +03:00
Change scope and type of configs from name to numbers
This got discussed earlier. Since epoch got merged with DayZ Mod we have a different name for the scope and type of configs. A proper config should use numbers for those entries. This is the same how arma configs are written. The basicDefines.hpp has all the needed information stored. Also, this removes the weight entries from the magazines since we have them in a separate folder, so admins can edit them.
This commit is contained in:
@@ -4,7 +4,7 @@ class L110A1_CCO_DZ : BAF_L110A1_Aim
|
||||
picture = "\z\addons\dayz_communityweapons\l110a1\data\w_l110a1_cco_ca.paa";
|
||||
displayName = $STR_DZ_WPN_L110A1_CCO_NAME;
|
||||
irDistance = 0;
|
||||
type = WeaponSlotPrimary;
|
||||
type = 1;
|
||||
magazines[] =
|
||||
{
|
||||
200Rnd_556x45_L110A1,
|
||||
@@ -64,7 +64,7 @@ class L110A1_DZ : L110A1_CCO_DZ
|
||||
};
|
||||
|
||||
class BAF_L110A1_Aim_DZE: BAF_L110A1_Aim { //Slightly different scope from L110A1_CCO_DZ, otherwise identical
|
||||
type = WeaponSlotPrimary;
|
||||
type = 1;
|
||||
magazines[] =
|
||||
{
|
||||
200Rnd_556x45_L110A1,
|
||||
|
||||
Reference in New Issue
Block a user