Actual fix for #135 (#154)

* Fix for #135 and fixes for other issues such as actually playing the game

* Removed accidentally added .vscode files

* Patchy patch
This commit is contained in:
Maftei Albert-Alexandru
2022-01-25 03:58:54 +02:00
committed by GitHub
parent 18aa0d2faa
commit 4afe2466fd
7 changed files with 32 additions and 68 deletions

View File

@@ -415,7 +415,8 @@ QString AccountData::profileId() const {
QString AccountData::profileName() const {
if(minecraftProfile.name.size() == 0) {
return QObject::tr("No profile (%1)").arg(accountDisplayString());
// Fix for too long of a name
return QObject::tr("%1").arg(accountDisplayString());
}
else {
return minecraftProfile.name;