diff options
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_);
|