Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Batch spellchecking fixes to quest descriptions #1816

Merged
merged 1 commit into from
Mar 26, 2021
Merged

Batch spellchecking fixes to quest descriptions #1816

merged 1 commit into from
Mar 26, 2021

Conversation

yihualou
Copy link
Contributor

Handy script for reference (requires installing hunspell + the python nbtlib library)

#!/bin/sh
function main() {
  for f in $(find $1 -name "*snbt"); do
    echo "[== Checking SBNT file $f ==]"
    nbt -s $f --path "quests[].description[]" --pretty | hunspell -l -p ~/.hunspell_default | sort -u
  done
}
main "$@"

Copy link
Collaborator

@NielsPilgaard NielsPilgaard left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, thank you :D

@NielsPilgaard NielsPilgaard merged commit ed40975 into EnigmaticaModpacks:develop Mar 26, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants