0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-20 01:12:13 +02:00

change WurstClient to .Wurst encryption

This commit is contained in:
DutchO7 2023-09-14 11:35:19 -04:00
parent 9249fda95c
commit cfa8b4aa7f

View File

@ -154,7 +154,7 @@ public enum WurstClient
if((xdg_data_home = System.getenv("XDG_DATA_HOME")) != null
&& !xdg_data_home.isEmpty())
{
encFolder = Paths.get(xdg_data_home, "WurstClient").normalize();
encFolder = Paths.get(xdg_data_home, ".Wurst encryption").normalize();
if(!Files.exists(encFolder) && Files.isDirectory(oldEncFolder))
Encryption.migrateEncryptionFolder(oldEncFolder, encFolder);
}else