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

Whispers don't include "whispers" #105

Open
BlueNexus opened this issue Sep 1, 2015 · 1 comment
Open

Whispers don't include "whispers" #105

BlueNexus opened this issue Sep 1, 2015 · 1 comment

Comments

@BlueNexus
Copy link
Collaborator

When you attempt to whisper, rather than "name says quietly" or "name whispers" it misses out the "says" part. Very minor issue, i'll probably deal with it myself

@BlueNexus
Copy link
Collaborator Author

I think I might know what's going on here, but I need to test which languages this happens with.

if (speaking)
    if (speaking.whisper_verb)
        verb = speaking.whisper_verb
        not_heard = "[verb] something"
    else
        var/adverb = pick("quietly", "softly")
        verb = "[speaking.speech_verb] [adverb]"
        not_heard = "[speaking.speech_verb] something [adverb]"

What's happening is that it's ignoring whisper_verb and going straight to the else, and then it has no value for speech_verb for some reason, but still displays the adverb.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant