1.12.2 (100% real)

This commit is contained in:
Observer KRypt0n_ 2023-11-13 21:17:19 +02:00
parent 8c24bdc1b5
commit 923a389dff
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2

View file

@ -13,6 +13,7 @@ pub enum LauncherState {
PatchNotVerified,
PatchBroken,
PatchUnsafe,
PatchConcerning,
PatchNotInstalled,
PatchUpdateAvailable,
@ -167,7 +168,8 @@ impl LauncherState {
JadeitePatchStatusVariant::Verified => Ok(Self::Launch),
JadeitePatchStatusVariant::Unverified => Ok(Self::PatchNotVerified),
JadeitePatchStatusVariant::Broken => Ok(Self::PatchBroken),
JadeitePatchStatusVariant::Unsafe => Ok(Self::PatchUnsafe)
JadeitePatchStatusVariant::Unsafe => Ok(Self::PatchUnsafe),
JadeitePatchStatusVariant::Concerning => Ok(Self::PatchConcerning)
}
}
}