diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-25 08:48:39 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-25 08:48:39 -0400 |
commit | b7e31e8b7ce8f470a269c6bc17e6525c6f3a4d50 (patch) | |
tree | 476b444a70b39d9f84b6a39c926c110e2efaf473 /src/ui.cpp | |
parent | 2473bc452959f1c84b03c4b9202d601b3325143d (diff) |
fixed bugs
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -1059,8 +1059,20 @@ EXIT: currentWorld = ((Arena *)currentWorld)->exitArena(player); if (tmp != currentWorld) toggleBlackFast(); - } else if ((tmp = currentWorld->goInsideStructure(player)) != currentWorld) - currentWorld = tmp; + } else { + auto tmpp = currentWorld->goInsideStructure(player); + + if (tmpp.first != currentWorld) { + ui::toggleBlackFast(); + ui::waitForCover(); + + currentWorld = tmpp.first; + if (tmpp.second) + player->loc.x = tmpp.second; + + ui::toggleBlackFast(); + } + } break; case SDLK_LSHIFT: if (debug) { |