summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorFate <fate-tmw@googlemail.com>2008-12-03 21:25:30 -0700
committerFate <fate-tmw@googlemail.com>2008-12-03 21:25:30 -0700
commita444f55f1448cfb3b14f9019fd73b684e6a9f322 (patch)
tree843fb89853da604200dccb60fb8dc7fd06b0c57b /src/map/clif.c
parent1efdef1c054419ba1a0c8ee8836c5737228d579a (diff)
downloadtmwa-a444f55f1448cfb3b14f9019fd73b684e6a9f322.tar.gz
tmwa-a444f55f1448cfb3b14f9019fd73b684e6a9f322.tar.bz2
tmwa-a444f55f1448cfb3b14f9019fd73b684e6a9f322.tar.xz
tmwa-a444f55f1448cfb3b14f9019fd73b684e6a9f322.zip
Replaced use of rand()%range by peavey's MRAND() macro after complaints about script randomness
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 2858e50..ab64c2d 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -2583,7 +2583,7 @@ int clif_changestatus(struct block_list *bl,int type,int val)
*/
int clif_changelook(struct block_list *bl,int type,int val)
{
- clif_changelook_towards(bl, type, val, NULL);
+ return clif_changelook_towards(bl, type, val, NULL);
}
int clif_changelook_towards(struct block_list *bl,int type,int val, struct map_session_data *dstsd)