diff --git a/src/DMAPI/tgs/core/tgs_version.dm b/src/DMAPI/tgs/core/tgs_version.dm index 6fb90f0e10..ebcd9091aa 100644 --- a/src/DMAPI/tgs/core/tgs_version.dm +++ b/src/DMAPI/tgs/core/tgs_version.dm @@ -25,4 +25,4 @@ if(!istype(other_version)) return FALSE - return major == other_version.major && minor == other_version.minor && patch == other_version.patch && deprecated_patch != other_version.deprecated_patch + return suite == other_version.suite && minor == other_version.minor && patch == other_version.patch && deprecated_patch != other_version.deprecated_patch