Skip to content

Commit

Permalink
Merge remote-tracking branch 's1lentq/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
GiovaniFerraroTrivelli committed Jan 11, 2022
2 parents 1ce917b + 15aca1d commit 24ac56c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions reapi/extra/amxmodx/scripting/include/reapi_engine.inc
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ native any:get_ucmd(const ucmd, const UCmd:var, any:...);
* @param maxlen Maximum size of the buffer
*
* @return Number of cells written to buffer
* @error If the index is not within the range of 1 to MaxClients or
* the client is not connected, an error will be thrown.
* @error If invalid buffer handler provided, an error will be thrown.
*/
native get_key_value(const pbuffer, const key[], const value[], const maxlen);

Expand All @@ -52,6 +51,7 @@ native get_key_value(const pbuffer, const key[], const value[], const maxlen);
* @param value Value to set
*
* @noreturn
* @error If invalid buffer handler provided, an error will be thrown.
*/
native set_key_value(const pbuffer, const key[], const value[]);

Expand Down
4 changes: 2 additions & 2 deletions reapi/src/natives/natives_common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ cell AMX_NATIVE_CALL amx_get_viewent(AMX *amx, cell *params)
* @param maxlen Maximum size of the buffer
*
* @return Number of cells written to buffer
* @error If the index is not within the range of 1 to MaxClients or
* the client is not connected, an error will be thrown.
* @error If invalid buffer handler provided, an error will be thrown.
*
* native get_key_value(const pbuffer, const key[], const value[], const maxlen);
*/
Expand Down Expand Up @@ -152,6 +151,7 @@ cell AMX_NATIVE_CALL amx_get_key_value(AMX *amx, cell *params)
* @param value Value to set
*
* @noreturn
* @error If invalid buffer handler provided, an error will be thrown.
*
* native set_key_value(const &pbuffer, const key[], const value[]);
*/
Expand Down

0 comments on commit 24ac56c

Please sign in to comment.