Skip to content

Commit

Permalink
updated version display
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisj42 committed May 4, 2019
1 parent 3bea8be commit ccd246e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/client/src/miniventure/game/client/ClientCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void create () {

setScreen(new NotifyScreen(true, () -> setScreen(new MainMenu()),
"Continue",
"Welcome to Miniventure Beta!",
"Welcome to Miniventure Alpha!",
"",
"This game is not finished!!! Not even close.",
"Though the back-end may change from time to time, who knows.",
Expand Down
2 changes: 1 addition & 1 deletion core/common/src/miniventure/game/util/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ public String toString() {
if(major == 0)
return "The Main Release"+(dev?" (Dev Build)":"");

return (make==1?"Alpha ":make==2?"Beta ":"Update ")+major+(minor<0?" (Final)":"."+minor)+(dev?" (Dev Build)":"");
return (make==1?"Pre-Alpha ":make==2?"Alpha ":make==3?"Beta ":"Update ")+major+(minor<0?" (Final)":"."+minor)+(dev?" (Dev Build)":"");
}
}

0 comments on commit ccd246e

Please sign in to comment.