diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-01 21:30:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-01 21:30:02 -0300 |
commit | 44862dca9b6f26513f23ea1fd79365c7a8d33d9e (patch) | |
tree | d125ad9b9249c6f061a11991ec1b5d742662236c /npc/003-1/lieutenantdausen.txt | |
parent | d3c277d189ff513258f290c84680d275c4d05e0c (diff) | |
download | serverdata-44862dca9b6f26513f23ea1fd79365c7a8d33d9e.tar.gz serverdata-44862dca9b6f26513f23ea1fd79365c7a8d33d9e.tar.bz2 serverdata-44862dca9b6f26513f23ea1fd79365c7a8d33d9e.tar.xz serverdata-44862dca9b6f26513f23ea1fd79365c7a8d33d9e.zip |
Use rand2() instead of rand() in several places
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; } |