Skip to content

Commit

Permalink
fix using client only method for harder bed recipe names (#2253)
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 authored Dec 5, 2023
1 parent b0bc538 commit 62e5fec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ private static void miscRecipes() {
}

private static void addBedRecipe(int meta) {
String colorName = EnumDyeColor.byMetadata(meta).getDyeColorName();
String colorName = EnumDyeColor.byMetadata(meta).getName();
if ("silver".equals(colorName)) {
// thank you mojang
colorName = "light_gray";
Expand Down

0 comments on commit 62e5fec

Please sign in to comment.