mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-13 12:14:18 +01:00
Fix inverted logic.
This commit is contained in:
parent
502b2439b4
commit
eea4de63d5
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ public readonly struct ApplicationRules(
|
||||||
{
|
{
|
||||||
var modelValue = model.Parameters[flag];
|
var modelValue = model.Parameters[flag];
|
||||||
var gameValue = game.Parameters[flag];
|
var gameValue = game.Parameters[flag];
|
||||||
if ((modelValue.InternalQuadruple - gameValue.InternalQuadruple).LengthSquared() > 1e-9f)
|
if ((modelValue.InternalQuadruple - gameValue.InternalQuadruple).LengthSquared() < 1e-9f)
|
||||||
baseFlags &= ~flag;
|
baseFlags &= ~flag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue