Skip to content

Commit

Permalink
v1.0.1 - Added support for 1.15+ & Fixed alias issue
Browse files Browse the repository at this point in the history
Added:
+ Support for Spigot version 1.15+

Fixed:
~ Fixed an error causing aliases to not work on initial launch
  • Loading branch information
Brannstroom committed Dec 29, 2021
1 parent 5363bb2 commit 21bf7b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.brannstroom</groupId>
<artifactId>ExpBottle</artifactId>
<version>1.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<name>ExpBottle</name>
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/me/brannstroom/expbottle/ExpBottle.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import java.util.List;

import me.brannstroom.expbottle.command.ExpBottleCommand;
import me.brannstroom.expbottle.handlers.InfoKeeper;
import me.brannstroom.expbottle.listeners.ExpBottleListener;
import org.bukkit.Bukkit;
import org.bukkit.command.CommandExecutor;
Expand All @@ -27,6 +28,8 @@ public void onEnable() {

getConfig().options().copyDefaults();
saveDefaultConfig();

InfoKeeper.updateConfig();
}

public void onDisable() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ExpBottle
version: ${project.version}
main: me.brannstroom.expbottle.ExpBottle
api-version: 1.18
api-version: 1.13
authors: [ MiniGutt ]

0 comments on commit 21bf7b2

Please sign in to comment.