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

General - Make type syntax in header more consistent #10681

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Remove optional
  • Loading branch information
Timi007 committed Jan 20, 2025
commit 97b370bead0caef8dda2f1519aa0469e2f2ee003
4 changes: 2 additions & 2 deletions addons/common/functions/fnc_nearestVehiclesFreeSeat.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Distance <NUMBER> (optional, default: 10)
* 2: Restricted to cargo only <BOOL> (optional, default: false)
* 1: Distance <NUMBER> (default: 10)
* 2: Restricted to cargo only <BOOL> (default: false)
*
* Return Value:
* Nearest vehicles with a free seat <ARRAY>
Expand Down
6 changes: 3 additions & 3 deletions addons/medical/functions/fnc_setUnconscious.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
*
* Arguments:
* 0: The unit that will be put in an unconscious state <OBJECT>
* 1: Set unconsciouns <BOOL> (default: true)
* 2: Minimum unconscious time (set to 0 to ignore) <NUMBER> (optional, default: 0)
* 3: Force wakeup at given time if vitals are stable <BOOL> (optional, default: false)
* 1: Set unconscious <BOOL> (default: true)
* 2: Minimum unconscious time (set to 0 to ignore) <NUMBER> (default: 0)
* 3: Force wakeup at given time if vitals are stable <BOOL> (default: false)
*
* Return Value:
* Success? <BOOL>
Expand Down
Loading