9
0
mirror of https://github.com/Xiao-MoMi/Custom-Nameplates.git synced 2025-12-19 15:09:23 +00:00
This commit is contained in:
XiaoMoMi
2024-12-04 15:35:12 +08:00
parent 4d195820a0
commit 56c77bd294
2 changed files with 4 additions and 2 deletions

View File

@@ -41,6 +41,7 @@ import javax.imageio.ImageIO;
import java.awt.image.BufferedImage; import java.awt.image.BufferedImage;
import java.io.*; import java.io.*;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.util.*; import java.util.*;
public class ResourcePackManagerImpl implements ResourcePackManager { public class ResourcePackManagerImpl implements ResourcePackManager {
@@ -238,7 +239,8 @@ public class ResourcePackManagerImpl implements ResourcePackManager {
} }
if (ConfigManager.packNexo()){ if (ConfigManager.packNexo()){
try { try {
FileUtils.copyDirectory(new File(resourcePackFolder, "assets"), new File(pluginsFolder, "Nexo" + File.separator + "pack" + File.separator + "assets")); FileUtils.deleteDirectory(new File(pluginsFolder, "Nexo" + File.separator + "pack" + File.separator + "external_packs" + File.separator + "CustomNameplates"));
FileUtils.copyDirectory(resourcePackFolder, new File(pluginsFolder, "Nexo" + File.separator + "pack" + File.separator + "external_packs" + File.separator + "CustomNameplates"));
} catch (IOException e){ } catch (IOException e){
plugin.getPluginLogger().warn("Failed to copy files to Nexo", e); plugin.getPluginLogger().warn("Failed to copy files to Nexo", e);
} }

View File

@@ -1,6 +1,6 @@
# Project settings # Project settings
# Rule: [major update].[feature update].[bug fix] # Rule: [major update].[feature update].[bug fix]
project_version=3.0.15 project_version=3.0.15.1
config_version=34 config_version=34
project_group=net.momirealms project_group=net.momirealms