mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-25 14:11:48 +01:00
Reverse bool check
This commit is contained in:
parent
678a13d517
commit
90ffa0aa9a
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ internal static class HookVerifier
|
|||
// Compare Parameter Types
|
||||
for (var i = 0; i < passedParams.Length; i++)
|
||||
{
|
||||
if (CheckParam(passedParams[i].ParameterType, enforcedParams[i].ParameterType))
|
||||
if (!CheckParam(passedParams[i].ParameterType, enforcedParams[i].ParameterType))
|
||||
{
|
||||
mismatch = true;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue