Skip to content

Commit

Permalink
make addOrePrefix public
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss committed Aug 12, 2021
1 parent 09600d2 commit afe3e35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/gregtech/common/items/MetaItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,8 @@ private static void registerSpecialItemModel(ModelBakeEvent event, MetaValueItem
event.getModelRegistry().putObject(modelResourceLocation, bakedModel);
}

private static void addOrePrefix(OrePrefix orePrefix) {
@SuppressWarnings("unused")
public static void addOrePrefix(OrePrefix orePrefix) {
orePrefixes.add(orePrefix);
}
}

0 comments on commit afe3e35

Please sign in to comment.