File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -613,7 +613,7 @@ pub async fn launch_minecraft(
613
613
if std:: env:: var ( "CARGO" ) . is_ok ( ) {
614
614
command. env_remove ( "DYLD_FALLBACK_LIBRARY_PATH" ) ;
615
615
}
616
- // Java options should be set in instance options (the existence of _JAVA_OPTIONS overwites them)
616
+ // Java options should be set in instance options (the existence of _JAVA_OPTIONS overwrites them)
617
617
command. env_remove ( "_JAVA_OPTIONS" ) ;
618
618
619
619
command. envs ( env_args) ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ use uuid::Uuid;
24
24
#[ derive( Debug , Clone , Copy ) ]
25
25
pub enum MinecraftAuthStep {
26
26
GetDeviceToken ,
27
- SisuAuthenicate ,
27
+ SisuAuthenticate ,
28
28
GetOAuthToken ,
29
29
RefreshOAuthToken ,
30
30
SisuAuthorize ,
@@ -646,7 +646,7 @@ async fn sisu_authenticate(
646
646
"TitleId" : "1794566092" ,
647
647
} ) ,
648
648
key,
649
- MinecraftAuthStep :: SisuAuthenicate ,
649
+ MinecraftAuthStep :: SisuAuthenticate ,
650
650
current_date,
651
651
)
652
652
. await ?;
@@ -974,7 +974,7 @@ async fn minecraft_entitlements(
974
974
. bearer_auth ( token)
975
975
. send ( )
976
976
} )
977
- . await . map_err ( |source| MinecraftAuthenticationError :: Request { source, step : MinecraftAuthStep :: MinecraftEntitlements } ) ?;
977
+ . await . map_err ( |source| MinecraftAuthenticationError :: Request { source, step : MinecraftAuthStep :: MinecraftEntitlements } ) ?;
978
978
979
979
let status = res. status ( ) ;
980
980
let text = res. text ( ) . await . map_err ( |source| {
You can’t perform that action at this time.
0 commit comments