diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-30 18:30:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-30 18:30:50 +0300 |
commit | 21ec9caab9010b3109050dd891228c191e2b0dd0 (patch) | |
tree | a2aea1f87a6e9405922b3357273fd342d41c9385 /src/map/clif.c | |
parent | 5232d8fa98cbfb7a85e15b182eeb1e22d5b7376a (diff) | |
download | evol-hercules-21ec9caab9010b3109050dd891228c191e2b0dd0.tar.gz evol-hercules-21ec9caab9010b3109050dd891228c191e2b0dd0.tar.bz2 evol-hercules-21ec9caab9010b3109050dd891228c191e2b0dd0.tar.xz evol-hercules-21ec9caab9010b3109050dd891228c191e2b0dd0.zip |
Add script command for change music.
New script command: changemusic mapname, music
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 4e7f47b..e10b2f5 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -201,7 +201,7 @@ int eclif_send_actual(int *fd, void *buf, int *len) if (*len >= 2) { const int packet = RBUFW (buf, 0); - if (packet >= 0xb02 && packet <= 0xb05) + if (packet >= 0xb02 && packet <= 0xb10) { struct SessionExt *data = session_get(*fd); if (!data) |