Skip to content
This repository has been archived by the owner on May 1, 2021. It is now read-only.

Commit

Permalink
fix missing eldo config
Browse files Browse the repository at this point in the history
  • Loading branch information
rainbowdashlabs committed Jan 26, 2021
1 parent 63144e7 commit 18a9ea9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static void preWarm(EldoPlugin eldoPlugin) {
public static void ignite(EldoPlugin eldoPlugin) {
Bukkit.getScheduler().runTaskLater(eldoPlugin, EldoUtilities::performLateCleanUp, 5);
Path plugins = Bukkit.getUpdateFolderFile().toPath().getParent();
Path eldoUtilconfig = Paths.get(plugins.toString(), "EldoUtilities", "config.yml");
Path eldoUtilconfig = Paths.get("..","EldoUtilities", "config.yml");
configuration = ConfigFileWrapper.forFile(instanceOwner, eldoUtilconfig.toString());
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<description>A basic library for plugin creation</description>

<properties>
<revision>1.6.2</revision>
<revision>1.6.3</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
<shade.base>de.eldoria.eldoutilities</shade.base>
Expand Down

0 comments on commit 18a9ea9

Please sign in to comment.