Skip to content

Commit

Permalink
Fix version parameter crash when playing without login.
Browse files Browse the repository at this point in the history
  • Loading branch information
saschb2b committed Oct 26, 2016
1 parent 1aa5d65 commit ed89070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<name>CraftenLauncher</name>
<groupId>de.craften.craftenlauncher</groupId>
<artifactId>CraftenLauncher</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void init(Config config) {
this.mCurrentVersion = new MinecraftVersion(version);
}

mMincraftArgs.put("version", "true");
mMincraftArgs.put("version", version);
mMinecraftPath.setVersionName(version);
} catch (CraftenVersionNotKnownException e) {
LOGGER.error("Version not available: " + version, e);
Expand Down

0 comments on commit ed89070

Please sign in to comment.