From 4ef014392845f10006e3a855dc1dd177cd522a7e Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 19 Jul 2020 21:35:32 -0400 Subject: [PATCH] typo --- core/src/mindustry/net/Administration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/net/Administration.java b/core/src/mindustry/net/Administration.java index 7615513ca5..9c95b467cf 100644 --- a/core/src/mindustry/net/Administration.java +++ b/core/src/mindustry/net/Administration.java @@ -139,7 +139,7 @@ public class Administration{ /** @return whether this action is allowed by the action filters. */ public boolean allowAction(Player player, ActionType type, Tile tile, Cons setter){ - //some actions are done by the server (null player) and thus are always alloed + //some actions are done by the server (null player) and thus are always allowed if(player == null) return true; PlayerAction act = Pools.obtain(PlayerAction.class, PlayerAction::new);