From fb6502bc65aaa01325b9352afcdaa76de5ec3713 Mon Sep 17 00:00:00 2001 From: chylex <info@chylex.com> Date: Mon, 14 Nov 2016 09:39:48 +0100 Subject: [PATCH] Rename plugin data folder to TD_Plugins for consistency --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 9155244d..7e8944d0 100644 --- a/Program.cs +++ b/Program.cs @@ -34,8 +34,8 @@ static class Program{ public static readonly string ProgramPath = AppDomain.CurrentDomain.BaseDirectory; public static readonly string StoragePath = IsPortable ? Path.Combine(ProgramPath, "portable", "storage") : GetDataStoragePath(); public static readonly string TemporaryPath = IsPortable ? Path.Combine(ProgramPath, "portable", "tmp") : Path.Combine(Path.GetTempPath(), BrandName+'_'+Path.GetRandomFileName().Substring(0, 6)); - public static readonly string PluginDataPath = Path.Combine(StoragePath, "plugins"); + public static readonly string PluginDataPath = Path.Combine(StoragePath, "TD_Plugins"); public static readonly string ConfigFilePath = Path.Combine(StoragePath, "TD_UserConfig.cfg"); private static readonly string LogFilePath = Path.Combine(StoragePath, "TD_Log.txt");