TModLoader v1.4.4.9
TModLoader source code documentation
Loading...
Searching...
No Matches

◆ HasRecipeGroup() [3/3]

bool Terraria.Recipe.HasRecipeGroup ( string name)
inline

Definition at line 15989 of file Recipe.cs.

15990 {
15991 if (!RecipeGroup.recipeGroupIDs.ContainsKey(name))
15992 {
15993 throw new RecipeException("A recipe group with the name " + name + " does not exist.");
15994 }
15995 int id = RecipeGroup.recipeGroupIDs[name];
15996 return HasRecipeGroup(id);
15997 }
bool HasRecipeGroup(int id)
Definition Recipe.cs:15984

References Terraria.Recipe.HasRecipeGroup(), and Terraria.RecipeGroup.recipeGroupIDs.

+ Here is the call graph for this function: