update mockbukkit

This commit is contained in:
alexcrea 2025-04-27 21:20:49 +02:00
parent a08fb3ac75
commit 8dbfeec2fa
No known key found for this signature in database
GPG key ID: 027DD67D2D3280C5
2 changed files with 11 additions and 5 deletions

View file

@ -60,12 +60,12 @@ public class AnvilViewMock extends PlayerInventoryViewMock implements AnvilView
@Override
public boolean bypassesEnchantmentLevelRestriction() {
throw new UnsupportedOperationException("Custom anvil was not think with this existing");
throw new UnsupportedOperationException("This is currently is not used in CustomAnvil");
}
@Override
public void bypassEnchantmentLevelRestriction(boolean bypassEnchantmentLevelRestriction) {
throw new UnsupportedOperationException("Custom anvil was not think with this existing");
throw new UnsupportedOperationException("This is currently is not used in CustomAnvil");
}
@Override
@ -73,4 +73,9 @@ public class AnvilViewMock extends PlayerInventoryViewMock implements AnvilView
return top;
}
@Override
public void open() {
throw new UnsupportedOperationException("This is currently is not used in CustomAnvil");
}
}