Partial Cross Team Interaction Exploit Fix (#722)

* Delete Mindustry-64.zip

* Delete core\src\io\anuke\mindustry\ui\dialogs\SaveDialog.java

* It seems like... Exploit Patch?

* 2nd

* idk man
This commit is contained in:
(G_H)
2019-09-27 07:07:31 +08:00
committed by Anuken
parent ecff04424d
commit 276b79a748
13 changed files with 16 additions and 1 deletions

View File

@@ -110,6 +110,7 @@ public abstract class InputHandler implements InputProcessor{
@Remote(targets = Loc.both, called = Loc.server, forward = true)
public static void onTileTapped(Player player, Tile tile){
if(tile == null || player == null) return;
if(!tile.interactable(player.getTeam())) return;
tile.block().tapped(tile, player);
}