-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increment gradle build code, add TCMD added message
- Loading branch information
1 parent
4312a9e
commit ca07222
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ class MenuNotificationManager(private val stage: Stage) { | |
private val notifications = GdxArray<MenuNotification>().apply { | ||
add( | ||
MenuNotification("beta-welcome-msg-shown", "Welcome to the beta!", "Thank you for" + | ||
" joining the beta! This is a very early version of the game, so there are likely to be bugs and" + | ||
" joining the beta! This is an early version of the game, so there are likely to be bugs and" + | ||
" issues. Please report them by emailing [email protected], or by clicking the \"Report Bug\"" + | ||
" button in the Pause screen or info menu. Please include as much information as possible," + | ||
" including the build version (in info menu), expected behaviour and steps to reproduce the bug." + | ||
|
@@ -25,9 +25,9 @@ class MenuNotificationManager(private val stage: Stage) { | |
" multiplayer functionality, have fun!", 800, 1800) | ||
) | ||
add( | ||
MenuNotification("tcpg-added", "New airport available!", "TCPG has been added to the" + | ||
" game. A number of bugs have also been fixed. As before, please report bugs encountered by clicking" + | ||
" the \"Report Bug\" button in the Pause screen, or from the info menu. Have fun!", 600, 1400) | ||
MenuNotification("tcmd-added", "New airport available!", "TCMD has been added to the" + | ||
" game. Some bugs have also been fixed. As usual, please report bugs encountered by clicking" + | ||
" the \"Report Bug\" button in the Pause screen in-game, or from the info menu. Have fun!", 600, 1400) | ||
) | ||
} | ||
|
||
|