Ive seen on the forums alot of ppl having issues when creating new races and classes when they use up all of their race/class slots as defined by MAX_RACE in mud.h. The problem being that the last race or class added doesnt seem to appear anywhere.
I believe the issue may be linked to language throughout the code such as this one in void do_showrace in act_wiz.c:
Its taking only those entries less than max race, when it should be <=. So if your max race is 20, and your new Tiefling race is number 20, it wont show.
I believe the issue may be linked to language throughout the code such as this one in void do_showrace in act_wiz.c:
for( i = 0; i < MAX_RACE; i++ )
Its taking only those entries less than max race, when it should be <=. So if your max race is 20, and your new Tiefling race is number 20, it wont show.