If KoLmafia's version is less than majorVersion.minorVersion, throws an exception. Otherwise, does nothing.
majorVersion.minorVersion
This behaves like the since X.Y; statement in ASH.
since X.Y;
Major version number
Minor version number
Point versions are no longer released by KoLmafia
If KoLmafia's major version is less than majorVersion, or if the major versions are equal but the minor version is less than minorVersion
majorVersion
minorVersion
If either majorVersion or minorVersion are not integers
// Throws if KoLmafia version is less than 20.7sinceKolmafiaVersion(20, 7); Copy
// Throws if KoLmafia version is less than 20.7sinceKolmafiaVersion(20, 7);
If KoLmafia's version is less than
majorVersion.minorVersion, throws an exception. Otherwise, does nothing.This behaves like the
since X.Y;statement in ASH.