mirror of
https://github.com/kiranhart/Auction-House.git
synced 2025-02-16 19:21:20 +01:00
2.107.1
This commit is contained in:
parent
509a0cf458
commit
070a38e1e3
6
pom.xml
6
pom.xml
@ -8,14 +8,14 @@
|
|||||||
|
|
||||||
<name>AuctionHouse</name>
|
<name>AuctionHouse</name>
|
||||||
<description>The ultimate auction solution for your server</description>
|
<description>The ultimate auction solution for your server</description>
|
||||||
<version>2.107.0</version>
|
<version>2.107.1</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<properties>
|
<properties>
|
||||||
<author>Kiran Hart</author>
|
<author>Kiran Hart</author>
|
||||||
<jarName>${project.name}</jarName>
|
<jarName>${project.name}</jarName>
|
||||||
<main.class>${project.groupId}.${project.artifactId}.${project.name}</main.class>
|
<main.class>${project.groupId}.${project.artifactId}.${project.name}</main.class>
|
||||||
<java.version>8</java.version>
|
<java.version>8</java.version>
|
||||||
<flight.version>3.17.0</flight.version>
|
<flight.version>3.18.0</flight.version>
|
||||||
<flight.path>ca.tweetzy</flight.path>
|
<flight.path>ca.tweetzy</flight.path>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
@ -102,7 +102,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spigotmc</groupId>
|
<groupId>org.spigotmc</groupId>
|
||||||
<artifactId>spigot</artifactId>
|
<artifactId>spigot</artifactId>
|
||||||
<version>1.20.4-R0.1-SNAPSHOT</version>
|
<version>1.20.2-R0.1-SNAPSHOT</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -621,7 +621,7 @@ public class GUIAuctionHouse extends AbstractPlaceholderGui {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Settings.GUI_REFRESH_BTN_ENABLED.getBoolean()) {
|
if (Settings.GUI_REFRESH_BTN_ENABLED.getBoolean()) {
|
||||||
setButton(Settings.GUI_REFRESH_BTN_SLOT.getInt(), getRefreshButtonItem(), e -> {
|
setButton(Settings.GUI_REFRESH_BTN_SLOT.getInt(), getRefreshButtonItem(), ClickType.LEFT, e -> {
|
||||||
if (Settings.USE_REFRESH_COOL_DOWN.getBoolean()) {
|
if (Settings.USE_REFRESH_COOL_DOWN.getBoolean()) {
|
||||||
if (AuctionHouse.getInstance().getAuctionPlayerManager().getCooldowns().containsKey(this.auctionPlayer.getPlayer().getUniqueId())) {
|
if (AuctionHouse.getInstance().getAuctionPlayerManager().getCooldowns().containsKey(this.auctionPlayer.getPlayer().getUniqueId())) {
|
||||||
if (AuctionHouse.getInstance().getAuctionPlayerManager().getCooldowns().get(this.auctionPlayer.getPlayer().getUniqueId()) > System.currentTimeMillis()) {
|
if (AuctionHouse.getInstance().getAuctionPlayerManager().getCooldowns().get(this.auctionPlayer.getPlayer().getUniqueId()) > System.currentTimeMillis()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user