Knights start with a lance

Make Knights start with a lance.
Eliminate "bashing" message if jousting.
Remove obsolete code from u_init.c.
This commit is contained in:
kmhugo
2002-02-02 05:38:51 +00:00
parent ecc3bc422c
commit 9a9cf8fca8
2 changed files with 10 additions and 39 deletions

View File

@@ -110,8 +110,11 @@ register struct obj *obj;
if (obj) {
unweapon = (obj->oclass == WEAPON_CLASS) ?
is_launcher(obj) || is_ammo(obj) ||
is_missile(obj) || is_pole(obj) :
!is_weptool(obj);
is_missile(obj) || (is_pole(obj)
#ifdef STEED
&& !u.usteed
#endif
) : !is_weptool(obj);
} else
unweapon = TRUE; /* for "bare hands" message */
update_inventory();