diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua index 57910e8e2d0be91252c729bf346579c633407975..b78db10a20eaae9faddaaa70344a84ec5fbfd5ea 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -827,7 +827,7 @@ function _M:doQuake(tg, x, y) local locs = {} local ms = {} self:project(tg, x, y, function(tx, ty) - if not game.level.map.attrs(tx, ty, "no_teleport") then + if not game.level.map.attrs(tx, ty, "no_teleport") and not game.level.map:checkAllEntities(tx, ty, "change_level") then locs[#locs+1] = {x=tx,y=ty} ms[#ms+1] = {map=game.level.map.map[tx + ty * w], attrs=game.level.map.attrs[tx + ty * w]} end diff --git a/src/wait.c b/src/wait.c index 837ac0823163d24c9a1bf663308c2d5feda098c9..1f5f7a1cf3af69cb3f9fd9c2ce0b145ca17e5642 100644 --- a/src/wait.c +++ b/src/wait.c @@ -117,6 +117,8 @@ static int enable(lua_State *L) manual_ticks_enabled = FALSE; waited_ticks = SDL_GetTicks(); + SDL_GL_SwapWindow(window); + int w, h; SDL_GetWindowSize(window, &w, &h);