mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fixed map module init, Prevented BFT execution on Headless, Changed BFT Enabled string
This commit is contained in:
parent
4f35e10afa
commit
a7d9489555
@ -18,6 +18,9 @@ call FUNC(determineZoom);
|
|||||||
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["Draw", {[] call FUNC(updateMapEffects);}];
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["Draw", {[] call FUNC(updateMapEffects);}];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Client only from here
|
||||||
|
if !(hasInterface) exitWith {};
|
||||||
|
|
||||||
["SettingsInitialized", {
|
["SettingsInitialized", {
|
||||||
// Start Blue Force Tracking if Enabled
|
// Start Blue Force Tracking if Enabled
|
||||||
if (GVAR(BFT_Enabled)) then {
|
if (GVAR(BFT_Enabled)) then {
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
#include "script_component.hpp"
|
#include "script_component.hpp"
|
||||||
|
|
||||||
if !(hasInterface) exitWith {};
|
if !(isServer) exitWith {};
|
||||||
|
|
||||||
PARAMS_3(_logic,_units,_activated);
|
PARAMS_3(_logic,_units,_activated);
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@
|
|||||||
<Czech>Blue Force Tracking</Czech>
|
<Czech>Blue Force Tracking</Czech>
|
||||||
</Key>
|
</Key>
|
||||||
<Key ID="STR_ACE_Map_BFT_Enabled_DisplayName">
|
<Key ID="STR_ACE_Map_BFT_Enabled_DisplayName">
|
||||||
<English>Enable</English>
|
<English>BFT Enable</English>
|
||||||
</Key>
|
</Key>
|
||||||
<Key ID="STR_ACE_Map_BFT_Enabled_Description">
|
<Key ID="STR_ACE_Map_BFT_Enabled_Description">
|
||||||
<English>Enable Blue Force Tracking. Default: No</English>
|
<English>Enable Blue Force Tracking. Default: No</English>
|
||||||
|
Loading…
Reference in New Issue
Block a user