Fixes loading, *Command system is broke* Will fix in the coming days.

This commit is contained in:
hondacrx
2022-06-02 17:00:58 -04:00
parent 0af9f22d70
commit 11e8c2f4f2
26 changed files with 268 additions and 137 deletions
+2 -2
View File
@@ -9320,12 +9320,12 @@ namespace Game.Spells
public bool HasFlag(ProcFlags procFlags)
{
return (_storage[0] & procFlags) != 0;
return (_storage[0] & (int)procFlags) != 0;
}
public bool HasFlag(ProcFlags2 procFlags)
{
return (_storage[1] & procFlags) != 0;
return (_storage[1] & (int)procFlags) != 0;
}
}
}