diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-04-30 21:07:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-04-30 21:07:46 +0300 |
commit | 4284e5bd3d3c3fd387b4e3a9b73220cafc0f2188 (patch) | |
tree | 48e1ab719e666847d84d328f570a868f6c00776b /src | |
parent | 33b41fe00a47510ed6b84e04fc9e9a222b053130 (diff) | |
download | evol-hercules-4284e5bd3d3c3fd387b4e3a9b73220cafc0f2188.tar.gz evol-hercules-4284e5bd3d3c3fd387b4e3a9b73220cafc0f2188.tar.bz2 evol-hercules-4284e5bd3d3c3fd387b4e3a9b73220cafc0f2188.tar.xz evol-hercules-4284e5bd3d3c3fd387b4e3a9b73220cafc0f2188.zip |
Remove checking for gm command in mail read packet.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/map/init.c | 2 | ||||
-rw-r--r-- | src/map/mail.c | 36 | ||||
-rw-r--r-- | src/map/mail.h | 9 |
4 files changed, 49 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 83923cb..a0a68fa 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -41,6 +41,8 @@ MAP_SRC = map/atcommand.c \ map/itemdb.h \ map/lang.c \ map/lang.h \ + map/mail.c \ + map/mail.h \ map/map.c \ map/map.h \ map/mob.c \ diff --git a/src/map/init.c b/src/map/init.c index 7eb1035..5327532 100644 --- a/src/map/init.c +++ b/src/map/init.c @@ -40,6 +40,7 @@ #include "map/clif.h" #include "map/itemdb.h" #include "map/lang.h" +#include "map/mail.h" #include "map/map.h" #include "map/mob.h" #include "map/npc.h" @@ -149,6 +150,7 @@ HPExport void plugin_init (void) addHookPre("itemdb->readdb_additional_fields", eitemdb_readdb_additional_fields); addHookPre("unit->can_move", eunit_can_move); addHookPre("unit->walktoxy", eunit_walktoxy); + addHookPre("mail->invalid_operation", email_invalid_operation); addHookPost("clif->getareachar_unit", eclif_getareachar_unit_post); addHookPost("clif->authok", eclif_authok_post); 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 <stdio.h> +#include <stdlib.h> +#include <string.h> + +#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; +} diff --git a/src/map/mail.h b/src/map/mail.h new file mode 100644 index 0000000..2c3aca2 --- /dev/null +++ b/src/map/mail.h @@ -0,0 +1,9 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#ifndef EVOL_MAP_MAIL +#define EVOL_MAP_MAIL + +bool email_invalid_operation(struct map_session_data *sd); + +#endif // EVOL_MAP_MAIL |