diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-24 18:20:55 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-24 18:20:55 +0000 |
commit | dc3d23e60aaad210be711844ab24b3a0a2b113aa (patch) | |
tree | 66c7b2bd3cb80ec53091059ebdc674ed03791629 /src/map/pc.c | |
parent | af0c947f3ce68479a1d41612ace459e74dead363 (diff) | |
download | hercules-dc3d23e60aaad210be711844ab24b3a0a2b113aa.tar.gz hercules-dc3d23e60aaad210be711844ab24b3a0a2b113aa.tar.bz2 hercules-dc3d23e60aaad210be711844ab24b3a0a2b113aa.tar.xz hercules-dc3d23e60aaad210be711844ab24b3a0a2b113aa.zip |
- Added function map_search_freecell to locate an available cell around an area (for recall/warping skills)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5732 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 03ec2c512..4063d97f0 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -193,8 +193,6 @@ int pc_addspiritball(struct map_session_data *sd,int interval,int max) { if(max > MAX_SKILL_LEVEL)
max = MAX_SKILL_LEVEL;
- if((sd->class_&MAPID_BASEMASK)==MAPID_GUNSLINGER)
- max = 10;
if(sd->spiritball < 0)
sd->spiritball = 0;
@@ -3696,6 +3694,7 @@ char * job_name(int class_) { case JOB_WEDDING:
case JOB_SUPER_NOVICE:
+
case JOB_XMAS:
return msg_txt(570 - JOB_WEDDING+class_);
|