From 920f55dff37a4f929e6529a5c049ebcef609d017 Mon Sep 17 00:00:00 2001 From: Observer KRypt0n_ Date: Thu, 18 May 2023 14:40:26 +0200 Subject: [PATCH] feat(honkai): disable mfplat patch by default Game should work fine without this patch with wine 8+ which is recommended to use by default --- src/games/honkai/config/schema/patch.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/games/honkai/config/schema/patch.rs b/src/games/honkai/config/schema/patch.rs index 855763b..5771779 100644 --- a/src/games/honkai/config/schema/patch.rs +++ b/src/games/honkai/config/schema/patch.rs @@ -26,7 +26,10 @@ impl Default for Patch { String::from("https://notabug.org/mkrsym1/dusk") ], - apply_mfplat: true, + // Seems to not be needed with wine 8+ + // which is recommended by default, so will work + // for most of users + apply_mfplat: false, // Disable root requirement for patching if we're running launcher in flatpak root: !PathBuf::from("/.flatpak-info").exists()