diff --git a/pom.xml b/pom.xml
index 271e265..ce809a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
me.despical
one-in-the-chamber
- 2.7.21
+ 2.7.3
One In The Chamber
2019
@@ -61,22 +61,22 @@
com.github.Despical
Commons
- 1.8.4
+ 1.8.81
com.github.Despical
InventoryFramework
- 2.3.2
+ 2.3.3
com.github.Despical
CommandFramework
- 1.5.1
+ 1.5.11
org.bstats
bstats-bukkit
- 3.0.2
+ 3.1.0
me.clip
@@ -156,7 +156,7 @@
me.despical.commandframework
- me.despical.oitc.commands
+ me.despical.oitc.command
org.bstats
diff --git a/src/main/java/me/despical/oitc/handlers/items/GameItem.java b/src/main/java/me/despical/oitc/handlers/items/GameItem.java
index 2152df6..d5b10c1 100644
--- a/src/main/java/me/despical/oitc/handlers/items/GameItem.java
+++ b/src/main/java/me/despical/oitc/handlers/items/GameItem.java
@@ -47,7 +47,7 @@ public GameItem(String displayName, String material, int slot, List lore
.name(displayName)
.lore(lore)
.unbreakable(true)
- .hideToolTip()
+ .hideTooltip()
.build();
this.slot = slot;
this.actions = actions.stream().map(Action::valueOf).collect(Collectors.toList());
@@ -58,7 +58,7 @@ public GameItem(String displayName, String material, int slot, List lore
.name(displayName)
.lore(lore)
.unbreakable(true)
- .hideToolTip();
+ .hideTooltip();
enchants.forEach(builder::enchantment);