Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
fixed rei display issues
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Nov 23, 2023
1 parent 021faa9 commit 306c2c7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
7 changes: 3 additions & 4 deletions FABRIC_CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ No formatting, just plain text. CurseForge support for it is terrible.

Change logging starts below:
----------
- update Porting-Lib version to `2.1.1158+1.20-entity-refactor`
- fix cogwheels don't make any sounds when placed normally issue ([#6](https://github.com/DM-Earth/create-fabric-dme-edition/issues/6))
- fix contraptions invisible issue ([#8](https://github.com/DM-Earth/create-fabric-dme-edition/issues/8))
- fix fluid pipes can't connect to fluid containers issue ([#11](https://github.com/DM-Earth/create-fabric-dme-edition/issues/11))
- Fixed Ingredients and results of recipes in sequenced assembly can't be looked up by REI.
- Fixed REI will throw an exception if sequenced assembly contains more than one filling step.
- Fixed Fluid tag ingredient of basin recipe only shows its first type of fluid in REI.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ this is the only solution for 1.20.1 with [Create Fabric](https://modrinth.com/m
### This fork fixes the following issues
- Fixed a crash that occurred when installing with [Hephaestus](https://modrinth.com/mod/hephaestus). **(This was due to a problem with the version of `PortingLib` used by Create Fabric.)**
- Fixed compatibility with [Sodium](https://modrinth.com/mod/sodium) 0.5.x **(this issue was caused by Flywheel Fabric)**.
- Fixed

### Development to compatible
See [issue#4](https://github.com/DM-Earth/create-fabric-dme-edition/issues/4)
Expand Down
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ def compat(DependencyHandler deps) {
deps.modCompileOnly("dev.onyxstudios.cardinal-components-api:cardinal-components-base:$cca_version")
deps.modCompileOnly("dev.onyxstudios.cardinal-components-api:cardinal-components-entity:$cca_version")

deps.modImplementation(deps.include("com.github.DM-Earth:CreateFabricREIBugFixDMEEdition:0.1.2-mc1.20.1")) {
exclude(group: "me.shedaniel")
}

recipeViewers(deps)
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ cca_version = 5.2.2
# Whether CC: Tweaked should be enabled in dev or not
cc_enabled = false
# What recipe viewer to use ('emi', 'rei', or 'jei'. if you change it, don't push it)
recipe_viewer = emi
recipe_viewer = rei
# comma-separated list of test mods to enable in dev. 'none' to use none.
test_mods = none
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@

import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;

import com.simibubi.create.content.processing.recipe.ProcessingRecipe;

import me.shedaniel.rei.api.common.category.CategoryIdentifier;
import me.shedaniel.rei.api.common.display.Display;
import me.shedaniel.rei.api.common.entry.EntryIngredient;
import me.shedaniel.rei.api.common.util.EntryIngredients;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.crafting.Recipe;

public class CreateDisplay<R extends Recipe<?>> implements Display {
Expand Down

0 comments on commit 306c2c7

Please sign in to comment.