This commit is contained in:
burningtnt 2025-09-13 16:35:41 +08:00
parent a493d86b07
commit 8becd371a1
No known key found for this signature in database
GPG Key ID: 18A43F21F9ACE8C4

View File

@ -204,7 +204,7 @@ public abstract sealed class TerracottaState {
@Override
public boolean isForkOf(TerracottaState state) {
return state instanceof HostOK hostOK && this.index - hostOK.index <= profileIndex;
return state instanceof GuestOK guestOK && this.index - guestOK.index <= profileIndex;
}
}