On Thu, 18 Mar 1999, Phillip Cowan wrote:
> Circlers'
>
<SNIP>
> undefined reference to `spells'
> make[1]: *** [../bin/circle] Error 1
> make[1]: Leaving directory
> `/inet/circle30bpl15.vittlemaster/dg+oasis.o.circle/src'
> make: *** [all] Error 2
>
spells[] dosn't exist anymore in bpl15
>
> 38: extern const char *apply_types[];
> 39: extern const char *container_bits[];
> 40: extern const char *spells[];
delete the above line
> 41: extern struct board_info_type board_info[];
>
> 582: void oedit_disp_spells_menu(struct descriptor_data *d)
> 583: {
> 584: int counter, columns = 0;
> 585:
> 586: get_char_cols(d->character);
> 587: #if defined(CLEAR_SCREEN)
> 588: send_to_char("^[[H^[[J", d->character);
> 589: #endif
> 590: for (counter = 0; counter < NUM_SPELLS; counter++) {
> 591: sprintf(buf, "%s%2d%s) %s%-20.20s %s", grn, counter, nrm, yel,
> 592: spells[counter], !(++columns % 3) ? "\r\n" : "");
change spells[counter] to spell_info[counter]
> 593: send_to_char(buf, d->character);
> 594: }
> 595: sprintf(buf, "\r\n%sEnter spell choice (0 for none) : ", nrm);
> 596: send_to_char(buf, d->character);
> 597: }
>
> *** end snip oedit.c ***
+------------------------------------------------------------+
| Ensure that you have read the CircleMUD Mailing List FAQ: |
| http://qsilver.queensu.ca/~fletchra/Circle/list-faq.html |
+------------------------------------------------------------+
This archive was generated by hypermail 2b30 : 12/15/00 PST