Issue information

Issue ID
#871
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jan 26, 2008 16:52
Last Post
Hercules Elf Bot
Jan 26, 2008 16:52
Confirmation
N/A

Hercules Elf Bot - Jan 26, 2008 16:52

Originally posted by [b]Ai4rei[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=871

/src/map/atcommand.c
CODE
int atcommand_doom(const int fd, struct map_session_data* sd, const char* command, const char* message)
{
    struct map_session_data *pl_sd, **pl_allsd;
    int i, users;
    nullpo_retr(-1, sd);
    clif_specialeffect(&sd->bl,450,ALL_SAMEMAP);  // <-- should be ALL_CLIENT

CODE
int atcommand_doommap(const int fd, struct map_session_data* sd, const char* command, const char* message)
{
    struct map_session_data *pl_sd, **pl_allsd;
    int i, users;
    nullpo_retr(-1, sd);
    clif_specialeffect(&sd->bl,450,ALL_CLIENT);  // <-- should be ALL_SAMEMAP


This post has been edited by Ai4rei: Nov 20 2010, 03:18 AM