Skip to content

Commit

Permalink
Remove debug menu
Browse files Browse the repository at this point in the history
  • Loading branch information
btarg committed Dec 9, 2023
1 parent 58e20b0 commit 0220137
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/io/github/btarg/origami/gui/CreativeMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

import java.awt.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class CreativeMenu implements Listener {
Expand Down Expand Up @@ -134,7 +133,6 @@ private List<ItemStack> getAllCustomItemStacks(String contentPack) {

CustomBlockRegistry.getBlockDefinitions(contentPack).values().forEach(blockDef -> allCustomItemStacks.add(blockDef.createCustomItemStack(1)));
CustomItemRegistry.getItemDefinitions(contentPack).values().forEach(itemDef -> allCustomItemStacks.add(itemDef.createCustomItemStack(1)));
Arrays.asList(Material.values()).forEach(material -> allCustomItemStacks.add(new ItemStack(material, 1)));

return allCustomItemStacks;
}
Expand Down

0 comments on commit 0220137

Please sign in to comment.