Skip to content

Commit

Permalink
Merge pull request #5882 from Smokingsquirrel/whisper-fix
Browse files Browse the repository at this point in the history
Speech flavour
  • Loading branch information
Trilbyspaceclone authored Nov 30, 2024
2 parents 52773e8 + fd085ed commit fa80f3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/human/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@
verb = speaking.get_spoken_verb(ending)
else
if(ending == "!")
verb=pick("exclaims", "shouts", "yells")
verb=pick("exclaims", "shouts", "yells", "proclaims", "hollers")
else if(ending == "?")
verb="asks"
verb=pick("asks", "inquires", "enquires", "queries")
else if(ending=="@")
verb="reports"

Expand Down
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/human/whisper.dm
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
verb = safepick(speaking.whisper_verb)
not_heard = "[verb] something"
if(!verb)
var/adverb = pick("quietly", "softly")
var/adverb = pick("whispers quietly", "whispers softly")
verb = "[safepick(speaking.speech_verb)] [adverb]"
not_heard = "[verb] something [adverb]"
else
Expand All @@ -84,7 +84,7 @@
if(verb == "yells loudly")
verb = "slurs emphatically"
else
var/adverb = pick("quietly", "softly")
var/adverb = pick("whispers quietly", "whispers softly")
verb = "[verb] [adverb]"

speech_problem_flag = handle_r[3]
Expand Down

0 comments on commit fa80f3e

Please sign in to comment.