From 81827e04a25aad8f4dbe7a52b1b4ac292035e6b0 Mon Sep 17 00:00:00 2001 From: Evorp <75297863+3vorp@users.noreply.github.com> Date: Fri, 4 Oct 2024 12:44:01 -0700 Subject: [PATCH] add "best" pack faq --- json/faq.json | 5 +++++ src/commands/faithful/missing.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/json/faq.json b/json/faq.json index 2fd11319..969217c0 100644 --- a/json/faq.json +++ b/json/faq.json @@ -29,6 +29,11 @@ "answer": "There are methods of installing custom resource packs on consoles, but they're very unreliable and change often as it's not officially supported behavior. There's no universal method that will work for everyone and hacky workarounds will probably be needed, sometimes even involving paid file managers. You may have luck searching up methods for an individual console online but results are not guaranteed and may stop working in the future.", "keywords": ["console", "console support", "xbox", "playstation", "switch"] }, + { + "question": "Which Faithful pack is the best?", + "answer": "It's a matter of personal preference—no pack is \"better\" than the others since they all aim to accomplish completely different things. The best way to find which pack is your favorite is to simply try all of them and see which one(s) you like the most.", + "keywords": ["best", "best pack"] + }, { "question": "Is Faithful available for [Minecraft version/edition]?", "answer": "Each pack is different:\n- Faithful 32x currently supports Bedrock Edition, and Java versions from 1.6 to the latest release, 1.4 and Beta 1.7.\n- Classic Faithful 32x Jappa and PA are also available from 1.6–the latest release and Bedrock Edition, but are currently not complete for b1.7–1.5.\n- Both 64x packs only currently support the latest Minecraft Java and Bedrock version.", diff --git a/src/commands/faithful/missing.ts b/src/commands/faithful/missing.ts index c4694619..73e24552 100644 --- a/src/commands/faithful/missing.ts +++ b/src/commands/faithful/missing.ts @@ -69,7 +69,7 @@ export const command: SlashCommand = { const version = edition === "bedrock" ? "latest" // always use latest bedrock version, easier to format - : (interaction.options.getString("version") ?? "latest"); + : interaction.options.getString("version") ?? "latest"; const updateChannels = version === "latest";