Implement stat drop handling for AI, Fixes for Conversion2
All checks were successful
Build / Build (push) Successful in 39s

This commit is contained in:
2026-05-23 12:57:15 +02:00
parent a5ef757b01
commit be5100df8a
5 changed files with 286 additions and 8 deletions

View File

@@ -36,4 +36,7 @@ public readonly struct TypeIdentifier : IEquatable<TypeIdentifier>
public static bool operator ==(TypeIdentifier left, TypeIdentifier right) => left.Equals(right);
public static bool operator !=(TypeIdentifier left, TypeIdentifier right) => !left.Equals(right);
/// <inheritdoc />
public override string ToString() => Name.ToString();
}