Skip to content

Commit

Permalink
add "best" pack faq
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed Oct 4, 2024
1 parent 38fd45b commit 81827e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions json/faq.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/faithful/missing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit 81827e0

Please sign in to comment.