Skip to content

Commit 0cc74b8

Browse files
committed
Fix Tuanjie detection
1 parent f077064 commit 0cc74b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AssetStudio/UnityVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class UnityVersion : IComparable
2727
public bool IsAlpha => BuildType == BuildTypes.Alpha;
2828
public bool IsBeta => BuildType == BuildTypes.Beta;
2929
public bool IsPatch => BuildType == BuildTypes.Patch;
30-
public bool IsTuanjie => BuildType == BuildTypes.Tuanjie;
30+
public bool IsTuanjie => BuildType == BuildTypes.Tuanjie && this >= (2022, 3);
3131

3232
public UnityVersion(string version)
3333
{

0 commit comments

Comments
 (0)