mirror of
https://github.com/tbamud/tbamud.git
synced 2026-03-07 05:20:15 +01:00
This update includes the transition to protocoloutput while maintaining backwards compatibility with all MUDs still using proc_colors
This commit is contained in:
parent
0fd579d3d4
commit
f0a80caaa3
25 changed files with 210 additions and 233 deletions
|
|
@ -505,14 +505,14 @@ int save_config( IDXTYPE nowhere )
|
|||
strip_cr(buf);
|
||||
|
||||
fprintf(fl, "* The entrance/exit menu.\n"
|
||||
"MENU = \n%s~\n\n", buf);
|
||||
"MENU = \n%s~\n\n", convert_from_tabs(buf));
|
||||
}
|
||||
|
||||
if (CONFIG_WELC_MESSG) {
|
||||
strcpy(buf, CONFIG_WELC_MESSG);
|
||||
strip_cr(buf);
|
||||
|
||||
fprintf(fl, "* The welcome message.\nWELC_MESSG = \n%s~\n\n", buf);
|
||||
fprintf(fl, "* The welcome message.\nWELC_MESSG = \n%s~\n\n", convert_from_tabs(buf));
|
||||
}
|
||||
|
||||
if (CONFIG_START_MESSG) {
|
||||
|
|
@ -520,7 +520,7 @@ int save_config( IDXTYPE nowhere )
|
|||
strip_cr(buf);
|
||||
|
||||
fprintf(fl, "* NEWBIE start message.\n"
|
||||
"START_MESSG = \n%s~\n\n", buf);
|
||||
"START_MESSG = \n%s~\n\n", convert_from_tabs(buf));
|
||||
}
|
||||
|
||||
fprintf(fl, "* Should the medit OLC show the advanced stats menu (1) or not (0).\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue