mirror of
https://github.com/tbamud/tbamud.git
synced 2025-09-22 05:50:48 +02:00
Moved cedit load_config of no_mort_to_immort to its proper place. --Rumble
This commit is contained in:
parent
c3b2beca7a
commit
5d7226fdf3
3 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
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
|
||||
bug: fixed typo in dg_variables.c (Thanks Zusuk)
|
||||
[Aug 08 2012] - Vatiken
|
||||
|
|
|
@ -95,7 +95,7 @@ a lesser Kraken's spike~
|
|||
A lesser Kraken's spike bobs in a rock pool here.~
|
||||
~
|
||||
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
|
||||
E
|
||||
spike~
|
||||
|
|
4
src/db.c
4
src/db.c
|
@ -3935,8 +3935,6 @@ void load_config( void )
|
|||
CONFIG_IDLE_RENT_TIME = num;
|
||||
else if (!str_cmp(tag, "idle_max_level"))
|
||||
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"))
|
||||
CONFIG_IMMORTAL_START = num;
|
||||
else if (!str_cmp(tag, "ibt_autosave"))
|
||||
|
@ -3996,6 +3994,8 @@ void load_config( void )
|
|||
case 'n':
|
||||
if (!str_cmp(tag, "nameserver_is_slow"))
|
||||
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")) {
|
||||
char tmp[READ_SIZE];
|
||||
if (CONFIG_NOPERSON)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue