diff options
author | Haru <haru@dotalux.com> | 2018-07-01 18:48:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-01 18:48:05 +0200 |
commit | 7b3a4baad373cb90722cd02b60dd0f2e699dacac (patch) | |
tree | 98097a5fb90225e1bde8787cb1416c286ae842e0 /src/map/script.c | |
parent | a9b22af50cb5af61486adb810a6724fb3d9f02ee (diff) | |
parent | 04db00cb3153b0d9b845430c8328f61d0bf25375 (diff) | |
download | hercules-7b3a4baad373cb90722cd02b60dd0f2e699dacac.tar.gz hercules-7b3a4baad373cb90722cd02b60dd0f2e699dacac.tar.bz2 hercules-7b3a4baad373cb90722cd02b60dd0f2e699dacac.tar.xz hercules-7b3a4baad373cb90722cd02b60dd0f2e699dacac.zip |
Merge pull request #2086 from AnnieRuru/42-queueopt
Fix *queueopt documentation
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/script.c b/src/map/script.c index e1d26e731..9c859ca12 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -22827,7 +22827,7 @@ BUILDIN(queueremove) /** * Script command queueopt: Modifies the options of a queue. * - * When the option value isn't provided, the option is removed. + * When the <event label> isn't provided, the option is removed. * * Returns 1 (true) on success, 0 (false) on failure. * @@ -22837,10 +22837,10 @@ BUILDIN(queueremove) * - QUEUEOPT_MAPCHANGE * * When the QUEUEOPT_MAPCHANGE event is triggered, it sets a temporary - * character variable \c @Queue_Destination_Map$ with the destination map name. + * character variable @Queue_Destination_Map$ with the destination map name. * * @code{.herc} - * queueopt(.@queue_id, optionType, <optional val>); + * queueopt(.@queue_id, optionType{, <event label>}); * @endcode */ BUILDIN(queueopt) |