>> The compiler seems to be choking on the reference to >> ch->pcdata->learned[sn], since in merc.h it is defined as: >> >> #if defined(FIRST_BOOT) >> sh_int learned [MAX_SKILL]; >> bool group_known [MAX_GROUP]; >> #else >> sh_int learned; >> bool group_known; >> #endif
it should be:
...
#else
sh_int * learned;
bool * group_known;
#endif

