Fix interaction and overheating headers

This commit is contained in:
Nicolás Badano 2015-01-14 01:14:47 -03:00
parent c2fe2ed745
commit 9408363706
2 changed files with 6 additions and 8 deletions

View File

@ -6,9 +6,9 @@ class CfgPatches {
weapons[] = {}; weapons[] = {};
requiredVersion = 0.60; requiredVersion = 0.60;
requiredAddons[] = {"ace_common"}; requiredAddons[] = {"ace_common"};
version = "0.95"; version = QUOTE(VERSION);
versionStr = "0.95"; versionStr = QUOTE(VERSION);
versionAr[] = {0,95,0}; versionAr[] = { VERSION_AR };
author[] = {"commy2", "KoffeinFlummi", "CAA-Picard", "bux578"}; author[] = {"commy2", "KoffeinFlummi", "CAA-Picard", "bux578"};
authorUrl = "https://github.com/commy2/"; authorUrl = "https://github.com/commy2/";
}; };

View File

@ -4,13 +4,11 @@ class CfgPatches {
class ADDON { class ADDON {
units[] = {}; units[] = {};
weapons[] = {"ACE_SpareBarrel"}; weapons[] = {"ACE_SpareBarrel"};
requiredVersion = 0.60; requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {ace_common, ace_interaction}; requiredAddons[] = {"ace_common", "ace_interaction"};
version = "0.95";
versionStr = "0.95";
versionAr[] = {0,95,0};
author[] = {"commy2", "KoffeinFlummi", "CAA-Picard"}; author[] = {"commy2", "KoffeinFlummi", "CAA-Picard"};
authorUrl = "https://github.com/commy2/"; authorUrl = "https://github.com/commy2/";
VERSION_CONFIG;
}; };
}; };