Skip to content

Commit

Permalink
Fixed missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBrostrom committed Sep 15, 2023
1 parent 01af805 commit 698689f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/mission/functions/fnc_teleport.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ params [
];

if (isNil "_dest") exitWith {
ERROR_MSG_2("No valid destination given for teleporter %1 (Action named; %2).", _object, _action)
ERROR_MSG_2("No valid destination given for teleporter %1 (Action named; %2).", _object, _action);
};

#ifdef DEBUG_MODE_NORMAL
INFO_3("Teleporter action, named '%1', added to %2 with destination: %3.", _action, _object, _dest)
INFO_3("Teleporter action, named '%1', added to %2 with destination: %3.", _action, _object, _dest);
#endif

_object addAction [
Expand Down Expand Up @@ -67,7 +67,7 @@ _object addAction [
[player, _height] call CBA_fnc_setHeight;
titleText ["", "BLACK IN", 3];
#ifdef DEBUG_MODE_NORMAL
INFO_3("%1 have been teleportet to %2 at height %3.", name player, _dest, _height)
INFO_3("%1 have been teleportet to %2 at height %3.", name player, _dest, _height);
#endif

}, _dest, 1.5, true, true, "", "true", 10
Expand Down

0 comments on commit 698689f

Please sign in to comment.