Skip to content

Commit

Permalink
1.9.4
Browse files Browse the repository at this point in the history
Took 1 minute
  • Loading branch information
kiranhart committed Aug 14, 2024
1 parent 1584f4b commit 8eb6741
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions buildNumber.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#maven.buildNumber.plugin properties file
#Wed Jul 03 14:03:33 EDT 2024
buildNumber=353
#Wed Aug 14 11:56:47 EDT 2024
buildNumber=356
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@

<name>Funds</name>
<description>The ultimate custom currency plugin</description>
<version>1.9.3</version>
<version>1.9.4</version>
<packaging>jar</packaging>

<properties>
<author>Kiran Hart</author>
<jarName>${project.name}</jarName>
<main.class>${project.groupId}.${project.artifactId}.${project.name}</main.class>
<java.version>16</java.version>
<flight.version>3.22.3</flight.version>
<flight.version>3.24.1</flight.version>
<flight.path>ca.tweetzy</flight.path>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected void draw() {
.lore(TranslationManager.list(Translations.GUI_CURRENCY_EDIT_ITEMS_ICON_LORE))
.make(), click -> click.manager.showGUI(click.player, new MaterialPickerGUI(this, "&eFunds &8> &7" + this.currency.getId() + " &8> &7Select Icon", null, (e, selected) -> {

this.currency.setIcon(selected);
this.currency.setIcon(CompMaterial.matchCompMaterial(selected));
this.currency.sync(false);
e.manager.showGUI(e.player, new CurrencyEditGUI(this.parent, this.account, this.currency));
})));
Expand Down

0 comments on commit 8eb6741

Please sign in to comment.