We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running the game with one of the localised executables, the arguments with spaces are considered as separated arguments:
> ./rRpg-english -w database/rpg.db -l foo -p foo drop 3 "Heavy breastplate" Namespace(action=['drop', '3', 'Heavy', 'breastplate'], debug=False, json=False, login='foo', password='foo', world='database/rpg.db') I have none of those
Must be:
> LC_MESSAGES=en_GB ./rRpg -w database/rpg.db -l foo -p foo drop 3 "Heavy breastplate" Namespace(action=['drop', '3', 'Heavy breastplate'], debug=False, json=False, login='foo', password='foo', world='database/rpg.db') You drop 3 Heavy breastplate
This comes from the sh files containing:
#!/bin/sh LC_MESSAGES=en_GB ./rRpg $@
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running the game with one of the localised executables, the arguments with spaces are considered as separated arguments:
Must be:
This comes from the sh files containing:
The text was updated successfully, but these errors were encountered: