summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-16 15:39:49 +0000
committerLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-16 15:39:49 +0000
commitd5155d42388cf3540fdf415512c2bfad0c8d5f8e (patch)
treeb7072b6cbe41a2520075d5d8761a6deed4b39d6b /src/map/pc.c
parent31e195ae1d7b165be2f2a404ece5d90f1d6a4785 (diff)
downloadhercules-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.c2
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);