From f1fb7d8098df4ca636ade862207a4a58e6d8ab07 Mon Sep 17 00:00:00 2001 From: MEEPofFaith <54301439+MEEPofFaith@users.noreply.github.com> Date: Wed, 8 Feb 2023 19:28:44 -0800 Subject: [PATCH] Fix modded payload conveyor icons (#8266) --- core/src/mindustry/world/Block.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/mindustry/world/Block.java b/core/src/mindustry/world/Block.java index 5c49709220..e96c58bbb9 100644 --- a/core/src/mindustry/world/Block.java +++ b/core/src/mindustry/world/Block.java @@ -1324,6 +1324,7 @@ public class Block extends UnlockableContent implements Senseable{ editorBase = new PixmapRegion(base); }else{ + if(gen[0] != null) packer.add(PageType.main, "block-" + name + "-full", Core.atlas.getPixmap(gen[0])); editorBase = gen[0] == null ? Core.atlas.getPixmap(fullIcon) : Core.atlas.getPixmap(gen[0]); }