1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-09-21 21:38:29 +03:00

Update InputHandler.java

This commit is contained in:
Anuken 2019-09-30 10:57:48 -04:00 committed by GitHub
parent c8b12837a4
commit 758670eb51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,6 +128,13 @@ public abstract class InputHandler implements InputProcessor{
tile.block().tapped(tile, player);
}
@Remote(targets = Loc.both, called = Loc.server, forward = true)
public static void onTileConfig(Player player, Tile tile, int value){
if(tile == null || !Units.canInteract(player, tile)) return;
//TODO
//tile.block().cofigured(tile, player, value);
}
public OverlayFragment getFrag(){
return frag;
}