Skip to content

Commit

Permalink
Fix #76
Browse files Browse the repository at this point in the history
  • Loading branch information
Dqu1J committed Aug 2, 2022
1 parent 5659db5 commit 63488ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private void removeRecipes(Map<ResourceLocation, JsonElement> map, ResourceManag
case "wrench" -> { if (!Config.getBool(ConfigValues.WRENCH)) toRemove.add(identifier); }
case "crossbow_with_spyglass" -> { if (!Config.getBool(ConfigValues.CROSSBOWS)) toRemove.add(identifier); }
case "glow_stick" -> { if (!Config.getBool(ConfigValues.GLOW_STICK)) toRemove.add(identifier); }
case "depth_meter" -> { if (!Config.getBool(ConfigValues.DEPTH_METER)) toRemove.add(identifier); }
case "depth_meter" -> { if (!Config.getBool(ConfigValues.DEPTH_METER, "enabled")) toRemove.add(identifier); }
case "mysterious_bundle" -> { if (!Config.getBool(ConfigValues.MYSTERIOUS_BUNDLE)) toRemove.add(identifier); }
case "trident" -> { if (!Config.getBool(ConfigValues.TRIDENT_SHARD)) toRemove.add(identifier); }
case "rope" -> { if (!Config.getBool(ConfigValues.ROPES)) toRemove.add(identifier); }
Expand Down

0 comments on commit 63488ad

Please sign in to comment.