diff --git a/RockSniffer/Addons/Storage/SQLiteStorage.cs b/RockSniffer/Addons/Storage/SQLiteStorage.cs index 192f5d2..c55835b 100644 --- a/RockSniffer/Addons/Storage/SQLiteStorage.cs +++ b/RockSniffer/Addons/Storage/SQLiteStorage.cs @@ -14,7 +14,8 @@ public SQLiteStorage() { SQLiteConnection.CreateFile("addonstorage.sqlite"); } - + + Environment.SetEnvironmentVariable("SQLite_ConfigureDirectory", "."); Connection = new SQLiteConnection("Data Source=addonstorage.sqlite;"); Connection.Open(); }