1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 11:45:51 +00:00

Update src/test/java/io/github/thebusybiscuit/slimefun4/testing/mocks/DamageableMock.java

Co-authored-by: TheBusyBiscuit <TheBusyBiscuit@users.noreply.github.com>
This commit is contained in:
RobotHanzo 2021-04-03 16:09:27 +08:00 committed by GitHub
parent c56713ed7d
commit cceb2af054
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,8 @@ import javax.annotation.Nonnull;
import javax.annotation.Nullable; import javax.annotation.Nullable;
public class DamageableMock extends SlimefunItem implements DamageableItem { public class DamageableMock extends SlimefunItem implements DamageableItem {
boolean itemDamageable;
private final boolean isDamageable;
public DamageableMock(Category category, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe, boolean damageable) { public DamageableMock(Category category, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe, boolean damageable) {
super(category, item, recipeType, recipe); super(category, item, recipeType, recipe);