From 4284e5bd3d3c3fd387b4e3a9b73220cafc0f2188 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 30 Apr 2015 21:07:46 +0300 Subject: Remove checking for gm command in mail read packet. --- src/map/mail.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/map/mail.c (limited to 'src/map/mail.c') diff --git a/src/map/mail.c b/src/map/mail.c new file mode 100644 index 0000000..d136192 --- /dev/null +++ b/src/map/mail.c @@ -0,0 +1,36 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#include +#include +#include + +#include "../../../common/db.h" +#include "../../../common/HPMi.h" +#include "../../../common/malloc.h" +#include "../../../common/mmo.h" +#include "../../../common/socket.h" +#include "../../../common/strlib.h" +#include "../../../common/timer.h" +#include "../../../map/battle.h" +#include "../../../map/itemdb.h" +#include "../../../map/map.h" +#include "../../../map/pc.h" + +bool email_invalid_operation(struct map_session_data *sd) +{ + if (!sd) + { + hookStop(); + return true; + } + + if (!map->list[sd->bl.m].flag.town) + { + ShowWarning("clif->parse_Mail: char '%s' trying to do invalid mail operations.\n", sd->status.name); + hookStop(); + return true; + } + hookStop(); + return false; +} -- cgit v1.2.3-60-g2f50