Skip to content

Commit

Permalink
Update Northstar.CustomServers/mod/scripts/vscripts/sh_progression.nut
Browse files Browse the repository at this point in the history
Co-authored-by: GeckoEidechse <[email protected]>
  • Loading branch information
Zanieon and GeckoEidechse authored Dec 13, 2023
1 parent e74c598 commit ed8a828
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ bool function ClientCommand_SetProgression( entity player, array<string> args )
return true
}

/// Resets a specific Titan's Aegis rank back to `0`
/// * `player` - The player entity to perform the action on
/// * `args` - The arguments passed from the client command. `args[0]` should be an integer corresponding to the index of the Titan to reset.
///
/// Returns `true` on success and `false` on missing args.
bool function ClientCommand_ResetTitanAegis( entity player, array<string> args )
{
if ( !args.len() )
Expand Down

0 comments on commit ed8a828

Please sign in to comment.