Crash fix

This commit is contained in:
Anuken
2019-10-17 08:40:11 -04:00
parent b804f7fa6e
commit 8cf0df7ac5
2 changed files with 2 additions and 2 deletions

View File

@@ -208,7 +208,7 @@ public class MobileInput extends InputHandler implements GestureListener{
}
//move all current requests to removal array so they fade out
removals.addAll(selectRequests.find(r -> !r.breaking));
removals.addAll(selectRequests.select(r -> !r.breaking));
selectRequests.clear();
selecting = false;
}).visible(() -> !selectRequests.isEmpty()).name("confirmplace");