From 2146b35e5a57592d700f6e9bbd15e0475c29903d Mon Sep 17 00:00:00 2001 From: Patrick 'Quezler' Mounier Date: Sat, 27 Feb 2021 16:21:11 +0100 Subject: [PATCH] eacho ther (#4810) * eacho ther * Update Tile.java --- core/src/mindustry/world/Tile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/Tile.java b/core/src/mindustry/world/Tile.java index 6a4dac41b8..2d9f1f98fb 100644 --- a/core/src/mindustry/world/Tile.java +++ b/core/src/mindustry/world/Tile.java @@ -491,7 +491,7 @@ public class Tile implements Position, QuadTreeObject, Displayable{ return block.solid && block.fillsTile && !block.synthetic() ? data : 0; } - /** @return true if these tiles are right next to eacho ther. */ + /** @return true if these tiles are right next to each other. */ public boolean adjacentTo(Tile tile){ return relativeTo(tile) != -1; }