fix: API level == 0

This commit is contained in:
goaaats 2021-12-18 14:01:14 +01:00 committed by GitHub
parent 678cd0f130
commit 739ba0bcdd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ namespace Dalamud.Plugin.Internal.Types
if (this.Name.IsNullOrEmpty())
return false;
if (this.DalamudApiLevel != 0)
if (this.DalamudApiLevel == 0)
return false;
return true;