Skip to content

Commit

Permalink
Updated code to v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
IamTheDefender authored Jan 29, 2023
1 parent 7088c15 commit 871d1a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.defender</groupId>
<artifactId>BW1058-ItemRotation</artifactId>
<version>v1.2</version>
<version>1.3</version>
<packaging>jar</packaging>

<name>ItemRotation</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void onPlayerShopOpen(InventoryOpenEvent event) {
if (e.getCurrentItem().getItemMeta() != null && e.getCurrentItem().getItemMeta().getDisplayName() != null) {
if (e.getCurrentItem().getItemMeta().getDisplayName().equals(itemName)) {
InventoryGui menu = new ItemRotationMenu(player);
menu.open(player);
menu.open((Player) e.getWhoClicked());
}
}
});
Expand Down

0 comments on commit 871d1a6

Please sign in to comment.