Sets the input of this furnace recipe. @param input The input material. @return The changed recipe, so you can chain calls.
(MaterialData input)
| 38 | * @return The changed recipe, so you can chain calls. |
| 39 | */ |
| 40 | public FurnaceRecipe setInput(MaterialData input) { |
| 41 | this.ingredient = input; |
| 42 | return this; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Sets the input of this furnace recipe. |
no test coverage detected