mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-26 06:22:17 -08:00
Bugfixes
This commit is contained in:
parent
f8b554aff8
commit
60d28fb01b
9 changed files with 2072 additions and 2459 deletions
|
|
@ -559,7 +559,10 @@ public abstract class InputHandler implements InputProcessor, GestureListener{
|
|||
|
||||
/** Handles tile tap events that are not platform specific. */
|
||||
boolean tileTapped(@Nullable Tilec tile){
|
||||
if(tile == null) return false;
|
||||
if(tile == null){
|
||||
frag.inv.hide();
|
||||
return false;
|
||||
}
|
||||
boolean consumed = false, showedInventory = false;
|
||||
|
||||
//check if tapped block is configurable
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue