Skip to content

Commit

Permalink
Fix item pipe Jade display (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
Technici4n authored Jan 1, 2025
1 parent afe9729 commit 148746f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
package dev.technici4n.moderndynamics.compat.jade;

import dev.technici4n.moderndynamics.attachment.attached.ItemAttachedIo;
import dev.technici4n.moderndynamics.init.MdItems;
import dev.technici4n.moderndynamics.network.item.ItemHost;
import dev.technici4n.moderndynamics.pipe.PipeBlockEntity;
import dev.technici4n.moderndynamics.util.ItemVariant;
Expand Down Expand Up @@ -80,7 +81,7 @@ public ResourceLocation getUid() {
// We need to run on the client side to add client traveling items on the client side,
// even if the server doesn't provide any stack.
var dummyGroup = new ViewGroup<ItemStack>(new ArrayList<>());
dummyGroup.views.add(ItemStack.EMPTY);
dummyGroup.views.add(MdItems.WRENCH.getDefaultInstance());
dummyGroup.id = "dummy";
groups.add(dummyGroup);

Expand Down

0 comments on commit 148746f

Please sign in to comment.