Minor fixes

Added missing RunMode option in the gamejolt save
Fixed error in rewardssystem script
Fixed typo in soundmanager error
Fixed typo in messagebox file validation error
This commit is contained in:
JappaWakka 2022-06-04 11:04:00 +02:00
parent caee81bc13
commit 0ab2493be1
4 changed files with 3 additions and 2 deletions

View File

@ -883,6 +883,7 @@ Namespace GameJolt
"skin|" & GameJolt.Emblem.GetPlayerSpriteFile(1, Core.GameJoltSave.GameJoltID, Core.GameJoltSave.Gender) & Environment.NewLine &
"location|Your Room" & Environment.NewLine &
"battleAnimations|1" & Environment.NewLine &
"RunMode|1" & Environment.NewLine &
"BoxAmount|5" & Environment.NewLine &
"LastRestPlace|yourroom.dat" & Environment.NewLine &
"LastRestPlacePosition|1,0.1,3" & Environment.NewLine &

View File

@ -35,7 +35,7 @@
sound = SoundEffect.FromStream(stream)
End Using
Else
Logger.Log(Logger.LogTypes.Warning, "SoundManager.vb: Sound at """ & GameController.GamePath & "\" & cContent.RootDirectory & "\Songs\" & Name & """ was not found!")
Logger.Log(Logger.LogTypes.Warning, "SoundManager.vb: Sound at """ & GameController.GamePath & "\" & cContent.RootDirectory & "\Sounds\" & Name & """ was not found!")
Return False
End If
Else

View File

@ -678,7 +678,7 @@ Public Class NewMainMenuScreen
Select Case _menuIndex
Case 0
If _selectedProfile = 1 And Security.FileValidation.IsValid(False) = False Then
_messageBox.Show(Localization.GetString("main_menu_error_filevalidation", "File validation failed!~Redownload the game's files to solve this problem."))
_messageBox.Show(Localization.GetString("main_menu_error_filevalidation", "File validation failed! Redownload the game's files to solve this problem."))
Else
_MainProfiles(_selectedProfile).SelectProfile()
End If