From 318ca1cc8ef21d1fd23d5d4767b3bbca4c5a8a76 Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 21 Sep 2026 15:42:20 -0400 Subject: [PATCH] Cleanup --- core/src/mindustry/world/Block.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/core/src/mindustry/world/Block.java b/core/src/mindustry/world/Block.java index c6552e6693..a3752822e1 100644 --- a/core/src/mindustry/world/Block.java +++ b/core/src/mindustry/world/Block.java @@ -1206,14 +1206,6 @@ public class Block extends UnlockableContent implements Senseable{ return consume; } - public void setupRequirements(Category cat, ItemStack[] stacks){ - requirements(cat, stacks); - } - - public void setupRequirements(Category cat, BuildVisibility visible, ItemStack[] stacks){ - requirements(cat, visible, stacks); - } - public void requirements(Category cat, ItemStack[] stacks, boolean unlocked){ requirements(cat, BuildVisibility.shown, stacks); this.alwaysUnlocked = unlocked;