Payload router sorter mode

This commit is contained in:
Anuken
2021-12-16 10:31:16 -05:00
parent 00ed0d017c
commit e481de9d28
27 changed files with 866 additions and 568 deletions

View File

@@ -1365,6 +1365,14 @@ abstract class BuildingComp implements Posc, Teamc, Healthc, Buildingc, Timerc,
* @return whether or not this block should be deselected.
*/
public boolean onConfigureTileTapped(Building other){
if(block.clearOnDoubleTap){
if(self() == other){
deselect();
configure(null);
return false;
}
return true;
}
return self() != other;
}