Skip to content

Commit

Permalink
1.0.64
Browse files Browse the repository at this point in the history
  • Loading branch information
ZombieStriker committed Jul 24, 2020
1 parent 0808160 commit a122d68
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 8 deletions.
35 changes: 35 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 24 additions & 6 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.zombie_striker</groupId>
<artifactId>NPCAuctions</artifactId>
<version>1.0.63</version>
<version>1.0.64</version>
<repositories>
<repository>
<id>spigot-repo</id>
Expand Down
4 changes: 4 additions & 0 deletions resources/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.0.64
Updated to 1.16
Fixed buy it now increasing amount purchased

1.0.63
Updated to 1.15.2
Cleaned-up code.
Expand Down
2 changes: 1 addition & 1 deletion src/me/zombie_striker/npcauctions/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ public void onClick(InventoryClickEvent e) {
}
if (aa.lastBid != null) {
OfflinePlayer ofp = Bukkit.getOfflinePlayer(aa.lastBid);
econ.depositPlayer(ofp, aa.buyitnow);
econ.depositPlayer(ofp, aa.biddingPrice);
if (ofp.isOnline()) {
((Player) ofp).sendMessage(prefix + s_outBid.replace("%item%",
(aa.is.getItemMeta().hasDisplayName()
Expand Down

0 comments on commit a122d68

Please sign in to comment.