mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-02-04 17:50:30 +03:00
Fix missing register_event() reference on event_enable/disable descriptions (#491)
Lack register_event() on enable_event and disable_event descriptions
This commit is contained in:
parent
cec42bdcae
commit
a87eb50441
@ -587,7 +587,7 @@ native register_event_ex(const event[], const function[], RegisterEventFlags:fla
|
|||||||
/**
|
/**
|
||||||
* Enables a function hook of a game event which has been previously registered with register_event_ex().
|
* Enables a function hook of a game event which has been previously registered with register_event_ex().
|
||||||
*
|
*
|
||||||
* @param handle Value returned from register_event_ex()
|
* @param handle Value returned from register_event() or register_event_ex()
|
||||||
*
|
*
|
||||||
* @noreturn
|
* @noreturn
|
||||||
* @error If an invalid handle is provided, an error will be thrown.
|
* @error If an invalid handle is provided, an error will be thrown.
|
||||||
@ -597,7 +597,7 @@ native enable_event(handle);
|
|||||||
/**
|
/**
|
||||||
* Disables a function hook of a game event which has been previously registered with register_event_ex().
|
* Disables a function hook of a game event which has been previously registered with register_event_ex().
|
||||||
*
|
*
|
||||||
* @param handle Value returned from register_event_ex()
|
* @param handle Value returned from register_event() or register_event_ex()
|
||||||
*
|
*
|
||||||
* @noreturn
|
* @noreturn
|
||||||
* @error If an invalid handle is provided, an error will be thrown.
|
* @error If an invalid handle is provided, an error will be thrown.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user