1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

[CI skip] Merge pull request #3381 from qwertyuioplkjhgfd/master

make parachute class respect constructor recipetype parameter
This commit is contained in:
TheBusyBiscuit 2021-12-21 10:25:12 +01:00 committed by GitHub
commit 230ea07ca1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ public class Parachute extends SlimefunItem {
@ParametersAreNonnullByDefault
public Parachute(ItemGroup itemGroup, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe) {
super(itemGroup, item, RecipeType.ENHANCED_CRAFTING_TABLE, recipe);
super(itemGroup, item, recipeType, recipe);
}
}