diff options
author | shennetsind <ind@henn.et> | 2013-06-15 05:02:59 -0300 |
---|---|---|
committer | Euphy <euphy@rathena.org> | 2013-06-15 15:59:07 -0400 |
commit | b56c5ea6afb10322e8120fb9b71269030af8d899 (patch) | |
tree | daa5c570f4901937f3d899ea1af5711dbac6086d | |
parent | 0b532e2ff4b7ff94db27da4e841fd25f0ff1a159 (diff) | |
download | hercules-b56c5ea6afb10322e8120fb9b71269030af8d899.tar.gz hercules-b56c5ea6afb10322e8120fb9b71269030af8d899.tar.bz2 hercules-b56c5ea6afb10322e8120fb9b71269030af8d899.tar.xz hercules-b56c5ea6afb10322e8120fb9b71269030af8d899.zip |
Follow up de3f4423058405636c76e05cd87a6eae0bfa7707
Special Thanks to kyeme, Xgear
Signed-off-by: shennetsind <ind@henn.et>
-rw-r--r-- | src/map/mail.c | 5 | ||||
-rw-r--r-- | src/map/mail.h | 7 | ||||
-rw-r--r-- | src/map/map.c | 2 |
3 files changed, 10 insertions, 4 deletions
diff --git a/src/map/mail.c b/src/map/mail.c index 24af018ad..9a8d4e521 100644 --- a/src/map/mail.c +++ b/src/map/mail.c @@ -1,5 +1,6 @@ -// Copyright (c) Athena Dev Teams - Licensed under GNU GPL -// For more information, see LICENCE in the main folder +// Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// See the LICENSE file +// Portions Copyright (c) Athena Dev Teams #include "../common/nullpo.h" #include "../common/showmsg.h" diff --git a/src/map/mail.h b/src/map/mail.h index 5e5883aa6..99742c7bd 100644 --- a/src/map/mail.h +++ b/src/map/mail.h @@ -1,5 +1,6 @@ -// Copyright (c) Athena Dev Teams - Licensed under GNU GPL -// For more information, see LICENCE in the main folder +// Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// See the LICENSE file +// Portions Copyright (c) Athena Dev Teams #ifndef _MAIL_H_ #define _MAIL_H_ @@ -20,4 +21,6 @@ struct mail_interface { struct mail_interface *mail; +void mail_defaults(void); + #endif /* _MAIL_H_ */ diff --git a/src/map/map.c b/src/map/map.c index 5dbedebb6..d74263d1a 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -5239,6 +5239,7 @@ void map_hp_symbols(void) { HPM->share(ircbot,"ircbot"); HPM->share(itemdb,"itemdb"); HPM->share(logs,"logs"); + HPM->share(mail,"mail"); HPM->share(script,"script"); HPM->share(searchstore,"searchstore"); HPM->share(skill,"skill"); @@ -5269,6 +5270,7 @@ void load_defaults(void) { ircbot_defaults(); itemdb_defaults(); log_defaults(); + mail_defaults(); npc_defaults(); script_defaults(); searchstore_defaults(); |