Skip to content

Commit

Permalink
Make login(boolean msFirst) accessible publicly
Browse files Browse the repository at this point in the history
  • Loading branch information
tycrek committed Oct 29, 2021
1 parent 8a89510 commit 0c7c09a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'com.github.steveice10'
version '1.5-tycrek-12'
version '1.5-tycrek-13'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void loginMsFirst() throws RequestException {
login(true);
}

private void login(boolean msFirst) throws RequestException {
public void login(boolean msFirst) throws RequestException {
try {
authType = attemptAuth(mojangAuth, msFirst ? AuthType.Microsoft : AuthType.Mojang);
} catch (Exception ex) {
Expand Down

0 comments on commit 0c7c09a

Please sign in to comment.