Fix inverted logic.

This commit is contained in:
Ottermandias 2024-01-30 16:09:30 +01:00
parent 502b2439b4
commit eea4de63d5

View file

@ -75,7 +75,7 @@ public readonly struct ApplicationRules(
{
var modelValue = model.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;
}