Fixes dictionary uses (#7)
This commit is contained in:
parent
d4a52344f2
commit
916d404c51
161 changed files with 1211 additions and 1722 deletions
|
|
@ -42,10 +42,8 @@ namespace Server.Items
|
|||
{
|
||||
get
|
||||
{
|
||||
if (Recipe.Recipes.ContainsKey(m_RecipeID))
|
||||
return Recipe.Recipes[m_RecipeID];
|
||||
|
||||
return null;
|
||||
Recipe.Recipes.TryGetValue(m_RecipeID, out Recipe recipe);
|
||||
return recipe;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -121,4 +119,4 @@ namespace Server.Items
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue