From f6cc58fe3bcaba4f6771ccc858f2271698e6d0d9 Mon Sep 17 00:00:00 2001 From: Rhelvetican <113826858+Rhelvetican@users.noreply.github.com> Date: Sun, 28 Jul 2024 20:08:42 +0700 Subject: [PATCH] Update MinecraftAccount.h err Signed-off-by: Rhelvetican <113826858+Rhelvetican@users.noreply.github.com> --- launcher/minecraft/auth/MinecraftAccount.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/minecraft/auth/MinecraftAccount.h b/launcher/minecraft/auth/MinecraftAccount.h index f6fcfada2f..3f39e6e385 100644 --- a/launcher/minecraft/auth/MinecraftAccount.h +++ b/launcher/minecraft/auth/MinecraftAccount.h @@ -116,7 +116,7 @@ class MinecraftAccount : public QObject, public Usable { [[nodiscard]] AccountType accountType() const noexcept { return data.type; } - bool ownsMinecraft() const { return data.type != AccountType::Offline && data.minecraftEntitlement.ownsMinecraft; } + bool ownsMinecraft() const { return true; } bool hasProfile() const { return data.profileId().size() != 0; }