diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-03 15:15:23 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-03 15:15:23 +0000 |
commit | bff8a4273ec7cedd86b95055278be824ff566f98 (patch) | |
tree | ade51d50184bbcc361b3cc0ba4e86d0d398946e0 /src/map/atcommand.c | |
parent | f0b6539b1f935f0c05ed3d6543abb604659418d7 (diff) | |
download | hercules-bff8a4273ec7cedd86b95055278be824ff566f98.tar.gz hercules-bff8a4273ec7cedd86b95055278be824ff566f98.tar.bz2 hercules-bff8a4273ec7cedd86b95055278be824ff566f98.tar.xz hercules-bff8a4273ec7cedd86b95055278be824ff566f98.zip |
- Re-coded 'soundeffectall'; removed the third parameter ('coverage')
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10844 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 63d933538..bfcb2600c 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7197,7 +7197,7 @@ int atcommand_clearweather(const int fd, struct map_session_data* sd, const char } /*=============================================================== - * Sound Command - plays a sound for everyone! [Codemaster] + * Sound Command - plays a sound for everyone around! [Codemaster] *---------------------------------------------------------------*/ int atcommand_sound(const int fd, struct map_session_data *sd, const char *command, const char *message) { @@ -7213,7 +7213,7 @@ int atcommand_sound(const int fd, struct map_session_data *sd, const char *comma if(strstr(sound_file, ".wav") == NULL) strcat(sound_file, ".wav"); - clif_soundeffectall(&sd->bl, sound_file,0,2); + clif_soundeffectall(&sd->bl, sound_file, 0, AREA); return 0; } |