Moved cedit load_config of no_mort_to_immort to its proper place. --Rumble
This commit is contained in:
@@ -2,6 +2,8 @@ TbaMUD is currently being developed by The Builder Academy. If you need any
|
|||||||
help, find any bugs, or have ideas for improvement please stop by TBA at
|
help, find any bugs, or have ideas for improvement please stop by TBA at
|
||||||
telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble
|
telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble
|
||||||
@
|
@
|
||||||
|
[Aug 22 2012] - Rumble
|
||||||
|
bug: moved cedit load_config of no_mort_to_immort to its proper place. (thanks Liko)
|
||||||
[Aug 12 2012] - Vatiken
|
[Aug 12 2012] - Vatiken
|
||||||
bug: fixed typo in dg_variables.c (Thanks Zusuk)
|
bug: fixed typo in dg_variables.c (Thanks Zusuk)
|
||||||
[Aug 08 2012] - Vatiken
|
[Aug 08 2012] - Vatiken
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ a lesser Kraken's spike~
|
|||||||
A lesser Kraken's spike bobs in a rock pool here.~
|
A lesser Kraken's spike bobs in a rock pool here.~
|
||||||
~
|
~
|
||||||
5 g 0 0 0 ano 0 0 0 0 0 0 0
|
5 g 0 0 0 ano 0 0 0 0 0 0 0
|
||||||
3 8 5 14
|
3 8 5 11
|
||||||
5 50 5 0 0
|
5 50 5 0 0
|
||||||
E
|
E
|
||||||
spike~
|
spike~
|
||||||
|
|||||||
4
src/db.c
4
src/db.c
@@ -3935,8 +3935,6 @@ void load_config( void )
|
|||||||
CONFIG_IDLE_RENT_TIME = num;
|
CONFIG_IDLE_RENT_TIME = num;
|
||||||
else if (!str_cmp(tag, "idle_max_level"))
|
else if (!str_cmp(tag, "idle_max_level"))
|
||||||
CONFIG_IDLE_MAX_LEVEL = num;
|
CONFIG_IDLE_MAX_LEVEL = num;
|
||||||
else if (!str_cmp(tag, "no_mort_to_immort"))
|
|
||||||
CONFIG_NO_MORT_TO_IMMORT = num;
|
|
||||||
else if (!str_cmp(tag, "immort_start_room"))
|
else if (!str_cmp(tag, "immort_start_room"))
|
||||||
CONFIG_IMMORTAL_START = num;
|
CONFIG_IMMORTAL_START = num;
|
||||||
else if (!str_cmp(tag, "ibt_autosave"))
|
else if (!str_cmp(tag, "ibt_autosave"))
|
||||||
@@ -3996,6 +3994,8 @@ void load_config( void )
|
|||||||
case 'n':
|
case 'n':
|
||||||
if (!str_cmp(tag, "nameserver_is_slow"))
|
if (!str_cmp(tag, "nameserver_is_slow"))
|
||||||
CONFIG_NS_IS_SLOW = num;
|
CONFIG_NS_IS_SLOW = num;
|
||||||
|
else if (!str_cmp(tag, "no_mort_to_immort"))
|
||||||
|
CONFIG_NO_MORT_TO_IMMORT = num;
|
||||||
else if (!str_cmp(tag, "noperson")) {
|
else if (!str_cmp(tag, "noperson")) {
|
||||||
char tmp[READ_SIZE];
|
char tmp[READ_SIZE];
|
||||||
if (CONFIG_NOPERSON)
|
if (CONFIG_NOPERSON)
|
||||||
|
|||||||
Reference in New Issue
Block a user