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/002-1 | |
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/002-1')
-rw-r--r-- | npc/002-1/chefgado.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/002-1/chefgado.txt b/npc/002-1/chefgado.txt index f47a3d9f8..5d464e965 100644 --- a/npc/002-1/chefgado.txt +++ b/npc/002-1/chefgado.txt @@ -91,7 +91,7 @@ L_Reward: end; L_Complete: - .@r = rand(3); + .@r = rand2(3); if (.@r == 0) npctalk3 l("What are you doing in my kitchen?! Get out, it's not a place for kids!"); if (.@r == 1) npctalk3 l("Where is the salt?! This is sugar! Proper sailors need salt, not sugar!"); if (.@r == 2) npctalk3 l("Are you going to stand here all day long? Go wash the dishes or go away."); |