Format multiple bad wizkit items a little better. It will scroll off the screen
if there are more than a screen of bad items, but that's probably not too
likely.
allow both wishing and genocide to accept either "none" or "nothing" when
the player wants to decline
left word in format string in get_wet() causing "The spellbook fadefades"
+two bad wizkit items in a row shouldn't make the user hit space many times
Platform- and/or Interface-Specific Fixes
FILE *fp;
char *ep, buf[BUFSZ];
struct obj *otmp;
+ boolean bad_items = FALSE;
+
if (!wizard || !(fp = fopen_wizkit_file())) return;
while (fgets(buf, 4*BUFSZ, fp)) {
otmp = addinv(otmp);
} else {
raw_printf("Bad wizkit item: \"%.50s\"", buf);
- wait_synch();
+ bad_items = TRUE;
}
}
}
+ if (bad_items)
+ wait_synch();
(void) fclose(fp);
return;
}