From 99cd66e99ce5328e41ea7201aba4b3281123c65e Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 4 Dec 2020 20:07:36 +0100 Subject: [PATCH] Fix some bugs in elvish display example --- evennia/contrib/rplanguage.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/evennia/contrib/rplanguage.py b/evennia/contrib/rplanguage.py index 576628e44f..d6f2c59b4d 100644 --- a/evennia/contrib/rplanguage.py +++ b/evennia/contrib/rplanguage.py @@ -60,12 +60,12 @@ Usage: Below is an example of "elvish", using "rounder" vowels and sounds: ```python - phonemes = "oi oh ee ae aa eh ah ao aw ay er ey ow ia ih iy " \ - "oy ua uh uw y p b t d f v t dh s z sh zh ch jh k " \ - "ng g m n l r w", + phonemes = ("oi oh ee ae aa eh ah ao aw ay er ey ow ia ih iy " + "oy ua uh uw y p b t d f v t dh s z sh zh ch jh k " + "ng g m n l r w") vowels = "eaoiuy" - prammar = "v vv vvc vcc vvcc cvvc vccv vvccv vcvccv vcvcvcc vvccvvcc " \ - "vcvvccvvc cvcvvcvvcc vcvcvvccvcvv", + grammar = ("v vv vvc vcc vvcc cvvc vccv vvccv vcvccv vcvcvcc vvccvvcc " + "vcvvccvvc cvcvvcvvcc vcvcvvccvcvv") word_length_variance = 1 noun_postfix = "'la" manual_translations = {"the":"y'e", "we":"uyi", "she":"semi", "he":"emi", @@ -74,7 +74,7 @@ Usage: rplanguage.add_language(key="elvish", phonemes=phonemes, grammar=grammar, word_length_variance=word_length_variance, noun_postfix=noun_postfix, vowels=vowels, - manual_translations=manual_translations + manual_translations=manual_translations, auto_translations="my_word_file.txt") ```