Skip to content

Commit

Permalink
2.122.0
Browse files Browse the repository at this point in the history
Took 43 seconds
  • Loading branch information
kiranhart committed Sep 9, 2024
1 parent f27857e commit e3e9194
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<name>AuctionHouse</name>
<description>The ultimate auction solution for your server</description>
<version>2.120.0</version>
<version>2.122.0</version>
<packaging>jar</packaging>
<properties>
<author>Kiran Hart</author>
Expand All @@ -20,6 +20,14 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<distributionManagement>
<repository>
<id>repsy</id>
<name>Tweetzy Maven Repo On Repsy</name>
<url>https://repo.repsy.io/mvn/kiran/tweetzy</url>
</repository>
</distributionManagement>

<repositories>
<repository>
<id>techscode</id>
Expand Down Expand Up @@ -89,6 +97,10 @@
<url>https://repo.codemc.io/repository/maven-public/</url>
<layout>default</layout>
</repository>
<repository>
<id>auxilor-plugins</id>
<url>https://repo.auxilor.io/repository/maven-public/</url>
</repository>
</repositories>

<pluginRepositories>
Expand Down Expand Up @@ -132,6 +144,12 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.willfp</groupId>
<artifactId>EcoBits</artifactId>
<version>1.8.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mineacademy.plugin</groupId>
<artifactId>CMI-API</artifactId>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/ca/tweetzy/auctionhouse/api/AuctionAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,6 @@ public boolean meetsListingRequirements(Player player, ItemStack itemStack) {
}
}


// Check NBT tags
for (String nbtTag : Settings.BLOCKED_NBT_TAGS.getStringList()) {
if (NBT.get(itemStack, nbt -> (boolean) nbt.hasTag(nbtTag))) {
Expand Down

0 comments on commit e3e9194

Please sign in to comment.