From 04b1ba31a925fc57ed4c4c2bc8f2f8ef833a869f Mon Sep 17 00:00:00 2001 From: Anuken Date: Thu, 25 Nov 2021 13:29:35 -0500 Subject: [PATCH] Fixed #6370 --- core/src/mindustry/io/JsonIO.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/io/JsonIO.java b/core/src/mindustry/io/JsonIO.java index 497ed7546a..b3984444ab 100644 --- a/core/src/mindustry/io/JsonIO.java +++ b/core/src/mindustry/io/JsonIO.java @@ -231,8 +231,8 @@ public class JsonIO{ UnitType unit = Vars.content.getByName(ContentType.unit, str); return item != null ? item : - block != null ? block : liquid != null ? liquid : + block != null ? block : unit; } });