Fixed spelling of enableUnconsciousnessAI

This commit is contained in:
Glowbal 2015-05-01 18:49:59 +02:00
parent 23bb96e514
commit 80162627ec
3 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@ class ACE_Settings {
typeName = "SCALAR";
value = 1;
};
class GVAR(enableUnconsiousnessAI) {
class GVAR(enableUnconsciousnessAI) {
value = 1;
typeName = "SCALAR";
values[] = {"Disabled", "50/50", "Enabled"};

View File

@ -87,7 +87,7 @@ class CfgVehicles {
typeName = "NUMBER";
defaultValue = 1;
};
class enableUnconsiousnessAI {
class enableUnconsciousnessAI {
displayName = "AI Unconsciousness";
description = "Allow AI to go unconscious";
typeName = "NUMBER";

View File

@ -29,7 +29,7 @@ if !(_activated) exitWith {};
[_logic, QGVAR(enableScreams), "enableScreams"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(playerDamageThreshold), "playerDamageThreshold"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(AIDamageThreshold), "AIDamageThreshold"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(enableUnconsiousnessAI), "enableUnconsiousnessAI"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(enableUnconsciousnessAI), "enableUnconsciousnessAI"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(preventInstaDeath), "preventInstaDeath"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(bleedingCoefficient), "bleedingCoefficient"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(painCoefficient), "painCoefficient"] call EFUNC(common,readSettingFromModule);