Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Changed description of CT recipes to use registry names (Closes #615).
  • Loading branch information
DisasterMoo committed Dec 4, 2019
1 parent 2748c36 commit 8ea8683
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 8 deletions.
Expand Up @@ -55,7 +55,8 @@ public void apply()
@Override
public String describe()
{
return "Adding barrel recipe for " + recipe.getResultName();
//noinspection ConstantConditions
return "Adding barrel recipe " + recipe.getRegistryName().toString();
}
});
}
Expand Down
Expand Up @@ -45,7 +45,8 @@ public void apply()
@Override
public String describe()
{
return "Adding clay knapping recipe for " + outputStack.getDisplayName();
//noinspection ConstantConditions
return "Adding clay knapping recipe " + recipe.getRegistryName().toString();
}
});
}
Expand Down
Expand Up @@ -45,7 +45,7 @@ public void apply()
@Override
public String describe()
{
return "Adding fire clay knapping recipe for " + outputStack.getDisplayName();
return "Adding fire clay knapping recipe " + recipe.getRegistryName();
}
});
}
Expand Down
Expand Up @@ -53,7 +53,8 @@ public void apply()
@Override
public String describe()
{
return "Adding heating recipe for " + ostack.getDisplayName();
//noinspection ConstantConditions
return "Adding heating recipe " + recipe.getRegistryName().toString();
}
});
}
Expand Down
Expand Up @@ -45,7 +45,8 @@ public void apply()
@Override
public String describe()
{
return "Adding leather knapping recipe for " + outputStack.getDisplayName();
//noinspection ConstantConditions
return "Adding leather knapping recipe " + recipe.getRegistryName().toString();
}
});
}
Expand Down
Expand Up @@ -49,7 +49,8 @@ public void apply()
@Override
public String describe()
{
return "Adding loom recipe for " + outputStack.getDisplayName();
//noinspection ConstantConditions
return "Adding loom recipe " + recipe.getRegistryName().toString();
}
});
}
Expand Down
Expand Up @@ -49,7 +49,8 @@ public void apply()
@Override
public String describe()
{
return "Adding quern recipe for " + outputStack.getDisplayName();
//noinspection ConstantConditions
return "Adding quern recipe " + recipe.getRegistryName().toString();
}
});
}
Expand Down
Expand Up @@ -52,7 +52,8 @@ public void apply()
@Override
public String describe()
{
return "Adding welding recipe for " + outputStack.getDisplayName();
//noinspection ConstantConditions
return "Adding welding recipe " + recipe.getRegistryName().toString();
}
});
}
Expand Down

0 comments on commit 8ea8683

Please sign in to comment.