chaotic monsters can use Stormbringer; lawful monsters can use Excalibur
No "corridor disappears" message if Vault guard dies off-level
slip while mounting and levitating at will should not cause damage
+if you see a monster jump into a trap in a secret corridor, it's not secret
Platform- and/or Interface-Specific Fixes
pline("%s %s into a %s!", Monnam(mtmp),
makeplural(locomotion(mtmp->data, "jump")),
t->ttyp == TRAPDOOR ? "trap door" : "hole");
+ if (levl[trapx][trapy].typ == SCORR) {
+ levl[trapx][trapy].typ = CORR;
+ unblock_point(trapx, trapy);
+ }
seetrap(t_at(trapx,trapy));
}
if (vis) {
pline("%s %s onto a teleport trap!", Monnam(mtmp),
makeplural(locomotion(mtmp->data, "jump")));
+ if (levl[trapx][trapy].typ == SCORR) {
+ levl[trapx][trapy].typ = CORR;
+ unblock_point(trapx, trapy);
+ }
seetrap(t_at(trapx,trapy));
}
/* don't use rloc_to() because worm tails must "move" */