Hello!
I have fixed a small little bug with do_gen_tog.
If you added a new toggle, the message wouldn't display.
There is actually 5 entries missing for the table. Here is the quick fix.
open act.other.c and find:
Code:
{"Autodoor disabled.\r\n",
"Autodoor enabled.\r\n"},
Under it add:
Code:
{"Color disabled.\r\n",
"Color enabled.\r\n"},
{"Syslog disabled.\r\n",
"Syslog enabled.\r\n"},
{"Wimpy disabled.\r\n",
"Wimpy enabled.\r\n"},
{"Pagelength disabled.\r\n",
"Pagelength enabled.\r\n"},
{"Screen width disabled.\r\n",
"Screen width enabled.\r\n"}
I don't know if these 5 were left out for a reason or not, but if you don't add them all new do_gen_tog will not display.
Sincerely,
Liko