mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Merge pull request #1854 from jonpas/lookUp
Increased ability to look up
This commit is contained in:
commit
f0a2c7c454
@ -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>
|
||||
|
@ -5,4 +5,4 @@ class ACE_Settings {
|
||||
isClientSettable = 1;
|
||||
displayName = CSTRING(UseImperial);
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
class Extended_PreInit_EventHandlers {
|
||||
class ADDON {
|
||||
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
class CfgFatigue {
|
||||
MinValue1 = 0.2;
|
||||
MinValue2 = 0.8;
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
class CfgInventoryGlobalVariable {
|
||||
maxSoldierLoad = 1200;
|
||||
};
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
class CfgMovesBasic {
|
||||
class ManActions {
|
||||
ACE_Climb = "ACE_Climb";
|
||||
|
6
addons/movement/CfgVehicles.hpp
Normal file
6
addons/movement/CfgVehicles.hpp
Normal file
@ -0,0 +1,6 @@
|
||||
class CfgVehicles {
|
||||
class Man;
|
||||
class CAManBase: Man {
|
||||
maxGunElev = 80; // Allows looking further up (default: 60)
|
||||
};
|
||||
};
|
@ -16,4 +16,5 @@ class CfgPatches {
|
||||
#include "CfgFatigue.hpp"
|
||||
//#include "CfgInventoryGlobalVariable.hpp"
|
||||
#include "CfgMoves.hpp"
|
||||
#include "CfgVehicles.hpp"
|
||||
#include "ACE_Settings.hpp"
|
||||
|
Loading…
Reference in New Issue
Block a user