diff options
Diffstat (limited to 'npc/functions/random-talk.txt')
-rw-r--r-- | npc/functions/random-talk.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/functions/random-talk.txt b/npc/functions/random-talk.txt index 4040b0fae..44fa9b255 100644 --- a/npc/functions/random-talk.txt +++ b/npc/functions/random-talk.txt @@ -182,11 +182,12 @@ function script legiontalk { } function script asleep { - switch(rand2(5)) { + switch(rand2(6)) { case 0: npctalkonce(l("Zzzzzzzzz...")); break; case 1: npctalkonce(l("Rrrr... Pchhhh...")); break; case 2: npctalkonce(l("Ggrmm... Grmmmm...")); break; case 3: npctalkonce(l("Hm... Shhhh...")); break; + case 4: npctalkonce(l("ZZZzzzz...")); break; default: emotion(E_SLEEPY); } end; |