Skip to content

Commit

Permalink
Removed Plugin Folder
Browse files Browse the repository at this point in the history
  • Loading branch information
XDPXI committed Nov 22, 2024
1 parent 694a54a commit 54866ff
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/client/java/dev/xdpxi/xdlib/config/configManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,11 @@ public class configManager {

public configManager() {
File configDir = new File("config" + File.separator + "xdlib");
File pluginDir = new File("config" + File.separator + "xdlib" + File.separator + "plugins");
gson = new GsonBuilder().setPrettyPrinting().create();

if (!configDir.exists()) {
configDir.mkdirs();
}
if (!pluginDir.exists()) {
pluginDir.mkdirs();
}
configFile = new File(configDir, CONFIG_FILE_NAME);

if (!configFile.exists()) {
Expand Down

0 comments on commit 54866ff

Please sign in to comment.