Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed missing semicolons #213

Merged
merged 1 commit into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading