Skip to content

Commit

Permalink
fix #1370
Browse files Browse the repository at this point in the history
  • Loading branch information
TropheusJ committed Mar 31, 2024
1 parent 0d1eb56 commit bd0b7cc
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 150 deletions.
1 change: 1 addition & 0 deletions FABRIC_CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ Change logging starts below:
- add cycling to the block displayed in manual item application in EMI
- fix manual item application recipes in emi rendering the shadow in front (#1383)
- make hidden items not show up in REI & EMI
- fix log spam with Continuity (#1370)
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ reach_entity_attributes_version = 2.3.0
registrate_version = 1.1.58-MC1.19.2
milk_lib_version = 1.0.51

port_lib_version = 2.1.1282
port_lib_version = 2.1.1298
# adding a module also requires adding a dependency to the FMJ
port_lib_modules = accessors,base,entity,extensions,fake_players,networking,obj_loader,tags,transfer

Expand Down
4 changes: 0 additions & 4 deletions src/main/java/com/simibubi/create/AllBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@
import com.simibubi.create.foundation.data.SharedProperties;
import com.simibubi.create.foundation.item.ItemDescription;
import com.simibubi.create.foundation.item.UncontainableBlockItem;
import com.simibubi.create.foundation.render.MultiRenderTypeModel;
import com.simibubi.create.foundation.utility.ColorHandlers;
import com.simibubi.create.foundation.utility.Couple;
import com.simibubi.create.foundation.utility.DyeHelper;
Expand Down Expand Up @@ -1751,7 +1750,6 @@ public class AllBlocks {
.blockstate((c, p) -> p.directionalBlock(c.get(), AssetLookup.forPowered(c, p)))
.item(DisplayLinkBlockItem::new)
.transform(customItemModel("_", "block"))
.onRegister(CreateRegistrate.blockModel(() -> MultiRenderTypeModel::forDisplayLink))
.register();

public static final BlockEntry<FlapDisplayBlock> DISPLAY_BOARD =
Expand All @@ -1777,7 +1775,6 @@ public class AllBlocks {
.addLayer(() -> RenderType::translucent)
.item()
.transform(customItemModel())
.onRegister(CreateRegistrate.blockModel(() -> MultiRenderTypeModel::forNixieTube))
.register();

public static final DyedBlockList<NixieTubeBlock> NIXIE_TUBES = new DyedBlockList<>(colour -> {
Expand All @@ -1791,7 +1788,6 @@ public class AllBlocks {
.blockstate(new NixieTubeGenerator()::generate)
.loot((p, b) -> p.dropOther(b, ORANGE_NIXIE_TUBE.get()))
.addLayer(() -> RenderType::translucent)
.onRegister(CreateRegistrate.blockModel(() -> MultiRenderTypeModel::forNixieTube))
.register();
});

Expand Down

This file was deleted.

0 comments on commit bd0b7cc

Please sign in to comment.