diff options
Diffstat (limited to 'npc/003-1/lieutenantdausen.txt')
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index 7f0569819..74503a99a 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -286,7 +286,7 @@ OnInit: // Render random guard answer after bringing him water function script GuardsGratitude { - switch (rand(6)) + switch (rand2(6)) { case 0: .@message$ = l("God bless you! You have saved me from sweltering!"); @@ -307,7 +307,7 @@ function script GuardsGratitude { .@message$ = l("Who are you? Thanks for the help."); break; default: - .@message$="Thank you!"; + .@message$=l("Thank you!"); break; } |