Skip to content

Commit

Permalink
fix moved markers not synched
Browse files Browse the repository at this point in the history
  • Loading branch information
commy2 committed Nov 25, 2018
1 parent 0e570f4 commit a4c0926
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion addons/markers/functions/fnc_movePFH.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ if (isNull _ctrlMap || !GVAR(moving)) exitWith {
(_this select 1) call CBA_fnc_removePerFrameHandler;

private _finalPos = getMarkerPos _marker;
private _overrule = [QGVAR(markerMoveEnded), [ACE_player, _marker, _originalPos, _finalPos]] call CBA_fnc_localEvent;

if !([QGVAR(markerMoveEnded), [ACE_player, _marker, _originalPos, _finalPos]] call CBA_fnc_localEvent) then {
if (!isNil "_overrule" && {_overrule isEqualTo true}) then {
_marker setMarkerPosLocal _originalPos;
} else {
[QGVAR(setMarkerPosLocal), [_marker, _finalPos]] call CBA_fnc_globalEvent;
Expand Down
4 changes: 2 additions & 2 deletions addons/markers/script_component.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#define COMPONENT_BEAUTIFIED Markers
#include "\z\ace\addons\main\script_mod.hpp"

// #define DEBUG_MODE_FULL
// #define DISABLE_COMPILE_CACHE
#define DEBUG_MODE_FULL
#define DISABLE_COMPILE_CACHE
// #define ENABLE_PERFORMANCE_COUNTERS

#ifdef DEBUG_ENABLED_MARKERS
Expand Down

0 comments on commit a4c0926

Please sign in to comment.