Skip to content

Commit

Permalink
little fix in RecipeHelper.
Browse files Browse the repository at this point in the history
  • Loading branch information
WanionCane committed Jul 12, 2016
1 parent ef883eb commit 409f67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/wanion/unidict/helper/RecipeHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
public class RecipeHelper
{
public static final List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList();
private static final Character[] DEFAULT_RECIPE_CHARS = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'};
private static final char[] DEFAULT_RECIPE_CHARS = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'};
private static final char[][] SHAPE = {{' ', ' ', ' '}, {' ', ' ', ' '}, {' ', ' ', ' '}};

private RecipeHelper() {}
Expand Down

0 comments on commit 409f67c

Please sign in to comment.