Issue information

Issue ID
#2755
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Feb 8, 2009 15:00
Last Post
Hercules Elf Bot
Feb 8, 2009 15:00
Confirmation
N/A

Hercules Elf Bot - Feb 8, 2009 15:00

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

In map/mail.c there is this function:

CODE
// This function only check if the mail operations are valid
bool mail_invalid_operation(struct map_session_data *sd)
{
    if( !map[sd->bl.m].flag.town && pc_isGM(sd) < get_atcommand_level(atcommand_mail) )
    {
        ShowWarning("clif_parse_Mail: char '%s' trying to do invalid mail operations.\n", sd->status.name);
        return true;
    }

    return false;
}


This does not allow normal players to use the Mailbox service, as when they trying to open a mail, the server denies it.
I think they should be able to read mails too.