Skip to content

Commit

Permalink
Fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-up committed Jul 19, 2024
1 parent 719f2f8 commit e5b8259
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions reapi/extra/amxmodx/scripting/include/reapi_engine.inc
Original file line number Diff line number Diff line change
Expand Up @@ -289,11 +289,15 @@ native bool:rh_is_paused();
/*
* Set server pause state
*
* @param st Pause state, true: server will be paused
* @param st Pause state, true: server will be paused, false: unpause(if paused)
* @param host If it is 1, the native will call 'Host_Pause()'
*
* @note rh_set_paused(true, true) just like set pausable to 1 and execute client command 'pause'
* @note rh_set_paused(true, false) only set g_psv.paused
*
* @noreturn
*/
native rh_set_paused(const bool:st, const bool:host);
native rh_set_pause(const bool:st, const bool:host = true);

/*
* Checks if a specific entity is fully packed in a given frame for a host client.
Expand Down

0 comments on commit e5b8259

Please sign in to comment.