diff --git a/doc/fixes34.1 b/doc/fixes34.1 index df043f127..88f281a8c 100644 --- a/doc/fixes34.1 +++ b/doc/fixes34.1 @@ -180,6 +180,8 @@ effect of wearing or removing the Eyes of the Overworld took effect on the dragon scale mail is magic armor invoking or applying an artifact must pass a touch_artifact check document 'D'rop BUCX behavior in the Guidebook +remove levitation boots over a portal, the portal teleport is delayed until + your next command is typed. Platform- and/or Interface-Specific Fixes diff --git a/src/allmain.c b/src/allmain.c index 65ee608ef..d3004e57a 100644 --- a/src/allmain.c +++ b/src/allmain.c @@ -283,10 +283,13 @@ moveloop() /* when immobile, count is in turns */ if(multi < 0) { - if (++multi == 0) /* finished yet? */ + if (++multi == 0) { /* finished yet? */ unmul((char *)0); + /* if unmul caused a level change, take it now */ + if (u.utotype) deferred_goto(); + } } - } + } } while (youmonst.movement