Skip to content

Commit

Permalink
Release 1.2.0.12121813
Browse files Browse the repository at this point in the history
  • Loading branch information
toonystank committed Dec 12, 2021
1 parent 5febc51 commit 47f4937
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.toonystank</groupId>
<artifactId>ArmorSwap</artifactId>
<version>1.1.2.1105809</version>
<version>1.2.0.12121813</version>
<packaging>jar</packaging>

<name>ArmorSwap</name>
Expand Down Expand Up @@ -69,7 +69,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.17.1-R0.1-SNAPSHOT</version>
<version>1.17-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void onArmorStandRightClickEvent(PlayerInteractAtEntityEvent event) {

event.setCancelled(true);
ArmorStand stand = (ArmorStand) entity;
if (stand.isInvisible()) return;
if (!stand.isVisible()) return;

// armor stand set armor
if (CanMove(playerTool(player, getType.boots))) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: ArmorSwap
version: '${project.version}'
main: com.toonystank.armorswap.ArmorSwap
api-version: 1.17
api-version: 1.8
authors: [ Edward ]
description: Simple Armorswap plugin. Swap armor by right clicking (This is a test project)
website: https://taggernation.com
Expand Down

0 comments on commit 47f4937

Please sign in to comment.