summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-25 16:52:41 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-25 16:52:41 +0000
commitc82c46496b3716a3db575d10c24843395dc1cdf4 (patch)
treebc69e4c19b3d828d9d268773ce53eb0fc38c8356 /src/map/pc.c
parent95f12980263078a51a09fbe9bc76447d9cd7a1fb (diff)
downloadhercules-c82c46496b3716a3db575d10c24843395dc1cdf4.tar.gz
hercules-c82c46496b3716a3db575d10c24843395dc1cdf4.tar.bz2
hercules-c82c46496b3716a3db575d10c24843395dc1cdf4.tar.xz
hercules-c82c46496b3716a3db575d10c24843395dc1cdf4.zip
- Added script commands roclass/eaclass to enable scripts to access eA's job format. Read script_commands.txt and ea_job_system.txt for a more complete explanation of how this job system works.
- Removed doc/item.txt (seems like a totally useless file) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8480 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 7761364e0..2c78d3370 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -3640,7 +3640,8 @@ int pc_jobid2mapid(unsigned short b_class)
class_ = MAPID_XMAS;
break;
default:
- ShowError("pc_jobid2mapid: Unrecognized job %d!\n", b_class);
+ if (battle_config.error_log)
+ ShowError("pc_jobid2mapid: Unrecognized job %d!\n", b_class);
return -1;
}
return class_;
@@ -3790,7 +3791,8 @@ int pc_mapid2jobid(unsigned short class_, int sex) {
case MAPID_BABY_ROGUE:
return JOB_BABY_ROGUE;
default:
- ShowError("pc_mapid2jobid: Unrecognized job %d!\n", class_);
+ if (battle_config.error_log)
+ ShowError("pc_mapid2jobid: Unrecognized job %d!\n", class_);
return -1;
}
}