> But when I shutdown my mud, and restart it
> the zone is not showed under the show zone command. I can look at the
> NEWINDEX file in the zon directory and the new zone file is in it but it
> never gets moved over to the working INDEX file. Any ideas or do I hafta
> add it manually under Win95?
>
Towards the end of boot_index() in db.c you should see these lines:
fclose(db_file);
fscanf(index, "%s\n", buf1);
}
/* sort the help index */
Change it to the following:
fclose(db_file);
fscanf(index, "%s\n", buf1);
}
fclose(index);
/* sort the help index */
+------------------------------------------------------------+
| Ensure that you have read the CircleMUD Mailing List FAQ: |
| http://democracy.queensu.ca/~fletcher/Circle/list-faq.html |
+------------------------------------------------------------+
This archive was generated by hypermail 2b30 : 12/08/00 PST