add wizard #poly and #levelchange (originally levelgain; Dylan O'Donnell),
add Jason Short's additional lenses use patch
add new Gnomish Mines levels from Kelly Bailey's patch
+add Ken Arnold's patch to show unpaid item prices in inventory
jousting by players wielding a lance while riding
Knights start with lance rather than spear
can start game without a pet via pettype:none (Dylan O'Donnell)
Strcat(bp, " (alternate weapon; not wielded)");
}
if(obj->owornmask & W_QUIVER) Strcat(bp, " (in quiver)");
- if(obj->unpaid)
- Strcat(bp, " (unpaid)");
+ if(obj->unpaid) {
+ long quotedprice = unpaid_cost(obj);
+ Sprintf(eos(bp), " (unpaid, %ld %s)",
+ quotedprice, currency(quotedprice));
+ }
if (!strncmp(prefix, "a ", 2) &&
index(vowels, *(prefix+2) ? *(prefix+2) : *bp)
&& (*(prefix+2) || (strncmp(bp, "uranium", 7)