replace version with macro, add missing params

This commit is contained in:
bux578 2015-01-12 15:12:53 +01:00
parent c72c51aca0
commit 07c8b7f4df

View File

@ -6,9 +6,9 @@ class CfgPatches {
weapons[] = {"ACE_Rallypoint_West", "ACE_Rallypoint_East", "ACE_Rallypoint_Independent", "ACE_RallypointExit_West", "ACE_RallypointExit_East", "ACE_RallypointExit_Independent"};
requiredVersion = 0.60;
requiredAddons[] = {"ace_core"};
version = "0.95";
versionStr = "0.95";
versionAr[] = {0,95,0};
version = QUOTE(VERSION);
versionStr = QUOTE(VERSION);
versionAr[] = {VERSION_AR};
author[] = {"bux578", "commy2"};
authorUrl = "https://github.com/bux578/";
};
@ -18,3 +18,9 @@ class CfgPatches {
#include "CfgAddons.hpp"
#include "CfgVehicleClasses.hpp"
#include "CfgVehicles.hpp"
class ACE_Parameters_Boolean {
// Boolean Parameters (0/1)
GVAR(SavePreDeathGear) = 0;
GVAR(RemoveDeadBodiesDisonncected) = 1;
};