Skip to content

Commit

Permalink
docs: todo + refined sentrite in tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Aug 4, 2024
1 parent cb7135e commit 15bc675
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/net/zepalesque/redux/item/ReduxTabs.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

@EventBusSubscriber(modid = Redux.MODID, bus = Bus.MOD)
public class ReduxTabs {

@SubscribeEvent(priority = EventPriority.LOWEST)
public static void buildCreativeModeTabs(BuildCreativeModeTabContentsEvent event) {
CreativeModeTab tab = event.getTab();
Expand Down Expand Up @@ -94,6 +94,8 @@ public static void buildCreativeModeTabs(BuildCreativeModeTabContentsEvent event
TabUtil.putAfter(AetherItems.ZANITE_GEMSTONE, ReduxItems.RAW_VERIDIUM, event);
TabUtil.putAfter(ReduxItems.RAW_VERIDIUM, ReduxItems.VERIDIUM_INGOT, event);
TabUtil.putAfter(ReduxItems.VERIDIUM_INGOT, ReduxItems.VERIDIUM_NUGGET, event);
TabUtil.putAfter(ReduxItems.VERIDIUM_NUGGET, ReduxItems.REFINED_SENTRITE, event);
TabUtil.putAfter(ReduxItems.REFINED_SENTRITE, ReduxItems.SENTRITE_CHUNK, event);

TabUtil.putAfter(AetherItems.AECHOR_PETAL, ReduxItems.WYND_OATS, event);
TabUtil.putAfter(ReduxItems.WYND_OATS, ReduxItems.WYND_OAT_PANICLE, event);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@

public class ReduxDungeonProcessors {


// TODO: Figure out why all Redux Sentry blocks are trapped

public static final RuleProcessor BRONZE_BLOCKS = new RuleProcessor(ImmutableList.of(
new ProcessorRule(new RandomBlockMatchTest(ReduxBlocks.CARVED_BASE.get(), 0.1F), AlwaysTrueTest.INSTANCE, ReduxBlocks.SENTRY_BASE.get().defaultBlockState()),
new ProcessorRule(new RandomBlockStateMatchTest(ReduxBlocks.CARVED_PILLAR.get().defaultBlockState()
Expand Down

0 comments on commit 15bc675

Please sign in to comment.