diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-16 15:39:49 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-16 15:39:49 +0000 |
commit | d5155d42388cf3540fdf415512c2bfad0c8d5f8e (patch) | |
tree | b7072b6cbe41a2520075d5d8761a6deed4b39d6b /src/map/pc.c | |
parent | 31e195ae1d7b165be2f2a404ece5d90f1d6a4785 (diff) | |
download | hercules-d5155d42388cf3540fdf415512c2bfad0c8d5f8e.tar.gz hercules-d5155d42388cf3540fdf415512c2bfad0c8d5f8e.tar.bz2 hercules-d5155d42388cf3540fdf415512c2bfad0c8d5f8e.tar.xz hercules-d5155d42388cf3540fdf415512c2bfad0c8d5f8e.zip |
* BL_PC and BL_MOB control script commands (experimental).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5627 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index b671514ed..5673e91dc 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -4491,7 +4491,7 @@ int pc_stop_following (struct map_session_data *sd) int pc_follow(struct map_session_data *sd,int target_id)
{
struct block_list *bl = map_id2bl(target_id);
- if (bl == NULL || bl->type != BL_PC)
+ if (bl == NULL /*|| bl->type != BL_PC*/)
return 1;
if (sd->followtimer != -1)
pc_stop_following(sd);
|