diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-04-05 19:12:18 +0000 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-04-05 19:12:18 +0000 |
commit | 5ad15527869c9ca9d374d9463a74093b536e96bc (patch) | |
tree | af9ad782b1fd1fc970525120eb6169e21a8e14ec /src/emap/init.c | |
parent | d9711288beba1ed7320f30252f1a1a2035da4023 (diff) | |
parent | f170e1cbb556b491a7ba7a74a26d19ab174752f0 (diff) | |
download | evol-hercules-s20190408.tar.gz evol-hercules-s20190408.tar.bz2 evol-hercules-s20190408.tar.xz evol-hercules-s20190408.zip |
Merge branch 'jesusalva/sendmapmask' into 'master's20190408
Implement sendMapMask() which sends a custom map mask only to a specified user.
See merge request evol/evol-hercules!12
Diffstat (limited to 'src/emap/init.c')
-rw-r--r-- | src/emap/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emap/init.c b/src/emap/init.c index 31656ef..d8a6d12 100644 --- a/src/emap/init.c +++ b/src/emap/init.c @@ -153,6 +153,7 @@ HPExport void plugin_init (void) addScriptCommand("npcwalkto", "ii", npcWalkTo); addScriptCommand("rif", "is*", rif); addScriptCommand("setmapmask", "si", setMapMask); + addScriptCommand("sendmapmask", "i*", sendMapMask); addScriptCommand("addmapmask", "si", addMapMask); addScriptCommand("removemapmask", "si", removeMapMask); addScriptCommand("getmapmask", "s", getMapMask); |