This commit is contained in:
Brianna 2019-12-27 23:53:29 -05:00
parent b52f432a04
commit ecd8b99a88
3 changed files with 4 additions and 4 deletions

View File

@ -75,7 +75,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.14.4</version>
<version>1.15</version>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -162,7 +162,7 @@ public class ItemBuilder {
* Unbreakability:
*/
public boolean isUnbreakable() {
return meta.spigot().isUnbreakable();
return meta.isUnbreakable();
}
public ItemBuilder unbreakable() {
@ -171,7 +171,7 @@ public class ItemBuilder {
@SuppressWarnings("deprecation")
public ItemBuilder unbreakable(boolean unbreakable) {
meta.spigot().setUnbreakable(unbreakable);
meta.setUnbreakable(unbreakable);
return this;
}

View File

@ -95,7 +95,7 @@ public class Voucher {
}
if (unbreakable) {
meta.spigot().setUnbreakable(true);
meta.setUnbreakable(true);
}
if (hideAttributes) {