mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: correctly check for .testing
This commit is contained in:
parent
e498da8079
commit
0741da0f7b
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ namespace Dalamud.Plugin
|
|||
}
|
||||
|
||||
var testingFile = new FileInfo(Path.Combine(dllFile.Directory.FullName, ".testing"));
|
||||
if (testingFile.Exists && this.dalamud.Configuration.DoPluginTest) {
|
||||
if (testingFile.Exists && !this.dalamud.Configuration.DoPluginTest) {
|
||||
Log.Information("Plugin {0} was testing, but testing is disabled.", dllFile.FullName);
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue