salamanders have no legs

However, they could ride.  Marilith is similar, but since it's MZ_LARGE,
that check disallowed riding.  Added a check for slithy(), like
canwearobj() already has.
This commit is contained in:
cohrs
2002-11-07 18:24:31 +00:00
parent 836d600080
commit f2cc8a0dbf
2 changed files with 2 additions and 1 deletions

View File

@@ -299,6 +299,7 @@ vault wall repair should remove traps subsequently created at affected spots
don't reveal deity name when a high priest(ess) gives temple entry greeting
for ordinary remove curse, don't uncurse quivered object unless it is suitable
to be used as a quivered weapon (ammo or missile)
salamanders have no legs and cannot ride
Platform- and/or Interface-Specific Fixes

View File

@@ -228,7 +228,7 @@ mount_steed(mtmp, force)
}
if (Upolyd && (!humanoid(youmonst.data) || verysmall(youmonst.data) ||
bigmonst(youmonst.data))) {
bigmonst(youmonst.data) || slithy(youmonst.data))) {
You("won't fit on a saddle.");
return (FALSE);
}