Skip to content

Commit

Permalink
fixed stone cover models on machines
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Jun 6, 2024
1 parent 0eddb22 commit b01ee18
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ public Texture[] getTextures() {

@Override
public ResourceLocation getModel(String type, Direction dir) {
return new ResourceLocation(Ref.ID, "block/cover/cover_pipe_overlay_only");
if (type.equals("pipe")){
return new ResourceLocation(Ref.ID, "block/cover/cover_pipe_overlay_only");
}
return getBasicModel();
}
}

0 comments on commit b01ee18

Please sign in to comment.