Skip to content

Commit

Permalink
Updated libraries, support for new Minecraft versions and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Despical committed Oct 28, 2024
1 parent 656dc7b commit 1c118de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.despical</groupId>
<artifactId>one-in-the-chamber</artifactId>
<version>2.7.21</version>
<version>2.7.3</version>

<name>One In The Chamber</name>
<inceptionYear>2019</inceptionYear>
Expand Down Expand Up @@ -61,22 +61,22 @@
<dependency>
<groupId>com.github.Despical</groupId>
<artifactId>Commons</artifactId>
<version>1.8.4</version>
<version>1.8.81</version>
</dependency>
<dependency>
<groupId>com.github.Despical</groupId>
<artifactId>InventoryFramework</artifactId>
<version>2.3.2</version>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>com.github.Despical</groupId>
<artifactId>CommandFramework</artifactId>
<version>1.5.1</version>
<version>1.5.11</version>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>3.0.2</version>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>me.clip</groupId>
Expand Down Expand Up @@ -156,7 +156,7 @@
</relocation>
<relocation>
<pattern>me.despical.commandframework</pattern>
<shadedPattern>me.despical.oitc.commands</shadedPattern>
<shadedPattern>me.despical.oitc.command</shadedPattern>
</relocation>
<relocation>
<pattern>org.bstats</pattern>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/me/despical/oitc/handlers/items/GameItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public GameItem(String displayName, String material, int slot, List<String> lore
.name(displayName)
.lore(lore)
.unbreakable(true)
.hideToolTip()
.hideTooltip()
.build();
this.slot = slot;
this.actions = actions.stream().map(Action::valueOf).collect(Collectors.toList());
Expand All @@ -58,7 +58,7 @@ public GameItem(String displayName, String material, int slot, List<String> lore
.name(displayName)
.lore(lore)
.unbreakable(true)
.hideToolTip();
.hideTooltip();

enchants.forEach(builder::enchantment);

Expand Down

0 comments on commit 1c118de

Please sign in to comment.