Skip to content

Commit

Permalink
idk
Browse files Browse the repository at this point in the history
  • Loading branch information
MehVahdJukaar committed Dec 20, 2024
1 parent d006a37 commit 820cfc1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- cannon ghost block ad slingshot

# Supplementaries
-
- click a pancake to get it back
- flower box quad rotation
- sign glow on particlestuff
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,11 @@ private static List<CraftingRecipe> createSusRecipe() {

String group = "sus_crafting";
List<Block> blocks = new ArrayList<>();
if(CommonConfigs.Tweaks.SUS_RECIPES.get()){
if (CommonConfigs.Tweaks.SUS_RECIPES.get()) {
blocks.add(Blocks.SAND);
blocks.add(Blocks.GRAVEL);
}
if(CommonConfigs.Building.GRAVEL_BRICKS_ENABLED.get()){
if (CommonConfigs.Building.GRAVEL_BRICKS_ENABLED.get()) {
blocks.add(ModRegistry.GRAVEL_BRICKS.get());
}

Expand Down Expand Up @@ -426,7 +426,7 @@ public static void registerRecipes(RecipeBookCategories category, Consumer<List<
if (CommonConfigs.Building.FLAG_ENABLED.get()) {
registry.accept(createFlagFromBanner());
}
if(CommonConfigs.Functional.SAFE_ENABLED.get()){
if (CommonConfigs.Functional.SAFE_ENABLED.get()) {
registry.accept(createSafeRecipe());
}
if (CommonConfigs.Tools.ANTIQUE_INK_ENABLED.get()) {
Expand Down Expand Up @@ -464,5 +464,5 @@ public static void registerRecipes(RecipeBookCategories category, Consumer<List<
registry.accept(createBubbleBlowerChargeRecipe());
}
}
}
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ registrate_version = MC1.20-1.3.3
modmenu_version = 4.0.0
cloth_version = 11.0.99
emi_version = 0.7.3
trinkets_version = 3.7.0
trinkets_version = 3.7.2
suppsquared_version = 1.20-1.1.5
cca_version = 5.2.1
port_lib_modules = accessors,base,networking,tags,config,tool_actions,loot,lazy_registration,recipe_book_categories
Expand Down

0 comments on commit 820cfc1

Please sign in to comment.