diff options
author | shennetsind <ind@henn.et> | 2013-05-17 13:53:41 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-05-17 13:53:41 -0300 |
commit | 9080a58e2184eeb36b30e6dc653ec5459b3acfb1 (patch) | |
tree | e7bc8f866c29ab876b18fd17c165ac47becfe43c /src/map/map.c | |
parent | 3820bd7e7715bc84f458cf1bf466e6377a2d2e46 (diff) | |
download | hercules-9080a58e2184eeb36b30e6dc653ec5459b3acfb1.tar.gz hercules-9080a58e2184eeb36b30e6dc653ec5459b3acfb1.tar.bz2 hercules-9080a58e2184eeb36b30e6dc653ec5459b3acfb1.tar.xz hercules-9080a58e2184eeb36b30e6dc653ec5459b3acfb1.zip |
MOTD redesign
much more flexible, as per community suggestion in
http://hercules.ws/board/topic/320-motd-change-suggestion/
dropped motd_type config
new motd is at npc/MOTD.txt
dropped @motd, @gmotd commands
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/map/map.c b/src/map/map.c index 49aef6c4c..ddd2a9c82 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -151,7 +151,6 @@ struct map_cache_map_info { }; char db_path[256] = "db"; -char motd_txt[256] = "conf/motd.txt"; char help_txt[256] = "conf/help.txt"; char help2_txt[256] = "conf/help2.txt"; char charhelp_txt[256] = "conf/charhelp.txt"; @@ -3340,8 +3339,6 @@ int map_config_read(char *cfgName) minsave_interval = 1; } else if (strcmpi(w1, "save_settings") == 0) save_settings = atoi(w2); - else if (strcmpi(w1, "motd_txt") == 0) - strcpy(motd_txt, w2); else if (strcmpi(w1, "help_txt") == 0) strcpy(help_txt, w2); else if (strcmpi(w1, "help2_txt") == 0) @@ -5206,6 +5203,7 @@ void load_defaults(void) { ircbot_defaults(); log_defaults(); map_defaults(); + npc_defaults(); script_defaults(); searchstore_defaults(); skill_defaults(); |