Skip to content

Commit

Permalink
Core - Fix acre_infantryPhonePosition position (#1362)
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror authored Dec 18, 2024
1 parent a2c6dd9 commit d07009d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/sys_core/fnc_handleConnectorRope.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if (_state) then {
if (_fromPoint isEqualTo [-1]) then {
private _positionConfig = configFile >> "CfgVehicles" >> typeOf _fromObject >> "acre_infantryPhonePosition";
if (isText _positionConfig) then {
_fromPoint = _target selectionPosition (getText _positionConfig); // Convert to coordinates for sys_core intercomPFH checks
_fromPoint = _fromObject selectionPosition (getText _positionConfig); // Convert to coordinates for sys_core intercomPFH checks
};
if (isArray _positionConfig) then {
_fromPoint = getArray _positionConfig;
Expand Down

0 comments on commit d07009d

Please sign in to comment.