Fixed RecipeData parseDatapackFile filename starting with uppercase.

Contributed by Mathael.
This commit is contained in:
MobiusDev 2016-06-12 17:47:08 +00:00
parent a6e394b55a
commit 03495b3ed6

View File

@ -56,7 +56,7 @@ public class RecipeData implements IGameXmlReader
public void load()
{
_recipes.clear();
parseDatapackFile("data/recipes.xml");
parseDatapackFile("data/Recipes.xml");
LOGGER.info(getClass().getSimpleName() + ": Loaded " + _recipes.size() + " recipes.");
}