Merge pull request #1854 from jonpas/lookUp

Increased ability to look up
This commit is contained in:
Glowbal 2015-07-25 20:41:46 +02:00
commit f0a2c7c454
8 changed files with 9 additions and 5 deletions

View File

@ -68,6 +68,7 @@ havena <silveredenis@gmail.com>
Hawkins
jokoho482 <jokoho482@gmail.com>`
Jonpas <jonpas33@gmail.com>
Karneck <dschultz26@hotmail.com>
Kavinsky <nmunozfernandez@gmail.com>
Kllrt <kllrtik@gmail.com>
legman <juicemelon@msn.com>

View File

@ -5,4 +5,4 @@ class ACE_Settings {
isClientSettable = 1;
displayName = CSTRING(UseImperial);
};
};
};

View File

@ -1,4 +1,3 @@
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preInit));

View File

@ -1,4 +1,3 @@
class CfgFatigue {
MinValue1 = 0.2;
MinValue2 = 0.8;

View File

@ -1,4 +1,3 @@
class CfgInventoryGlobalVariable {
maxSoldierLoad = 1200;
};

View File

@ -1,4 +1,3 @@
class CfgMovesBasic {
class ManActions {
ACE_Climb = "ACE_Climb";

View File

@ -0,0 +1,6 @@
class CfgVehicles {
class Man;
class CAManBase: Man {
maxGunElev = 80; // Allows looking further up (default: 60)
};
};

View File

@ -16,4 +16,5 @@ class CfgPatches {
#include "CfgFatigue.hpp"
//#include "CfgInventoryGlobalVariable.hpp"
#include "CfgMoves.hpp"
#include "CfgVehicles.hpp"
#include "ACE_Settings.hpp"