v0.8.2: Various bugfixes:

- Added a safety check to AndroidGame
- fixed Burning not checking if a thieve's item is null
- fixed wand of regrowth overriding tall grass and placing grass where it shouldn't
- fixed unique potions being vulnerable to explosions
- fixed tengu placing traps over plants
- fixed items not being IDed in rankings if players dies with an ankh
This commit is contained in:
Evan Debenham
2020-07-31 19:32:43 -04:00
parent d62cb4aa95
commit 462b1027cc
6 changed files with 28 additions and 9 deletions

View File

@@ -107,7 +107,12 @@ public class AndroidGame extends AndroidApplication {
view = (GLSurfaceView)graphics.getView();
}
@Override
public void onBackPressed() {
//do nothing, game should catch all back presses
}
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);