diff options
author | Asheraf <acheraf1998@gmail.com> | 2018-06-07 06:52:53 +0000 |
---|---|---|
committer | Asheraf <acheraf1998@gmail.com> | 2018-06-07 06:52:53 +0000 |
commit | 01e7abdf093ae78b6b8b78414b80764cee2c2420 (patch) | |
tree | 8467816e55dfc062a2cc4a93871c94c31bc8d785 /db | |
parent | fb16806ce0588414c5b808df535b72ef9e7ff6ba (diff) | |
download | hercules-01e7abdf093ae78b6b8b78414b80764cee2c2420.tar.gz hercules-01e7abdf093ae78b6b8b78414b80764cee2c2420.tar.bz2 hercules-01e7abdf093ae78b6b8b78414b80764cee2c2420.tar.xz hercules-01e7abdf093ae78b6b8b78414b80764cee2c2420.zip |
Fix a crash caused by removing entries in job_db
Diffstat (limited to 'db')
-rw-r--r-- | db/pre-re/job_db.conf | 2 | ||||
-rw-r--r-- | db/re/job_db.conf | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/db/pre-re/job_db.conf b/db/pre-re/job_db.conf index ac4ad1582..af8cabf9a 100644 --- a/db/pre-re/job_db.conf +++ b/db/pre-re/job_db.conf @@ -31,6 +31,8 @@ ************* Entry structure ******************************************** ************************************************************************** Job_Name: { // Job names as in src/map/pc.c (they are hardcoded at the moment so if you want to add a new job you should add it there) + BaseExpGroup: "Exp Group Name" (string) // Name of base exp group defined in exp_group_db.conf + JobExpGroup: "Exp Group Name" (string) // Name of job exp group defined in exp_group_db.conf Inherit: ("Other_Job_Name") // Base job from which this job will inherit its max weight, base ASPD set and HP/SP table. InheritHP: ("Other_Job_Name") // Base job from which this job will inherit its HP table (if different). InheritSP: ("Other_Job_Name") // Base job from which this job will inherit its SP table (if different). diff --git a/db/re/job_db.conf b/db/re/job_db.conf index 93bab17e0..21ba3f4cc 100644 --- a/db/re/job_db.conf +++ b/db/re/job_db.conf @@ -31,6 +31,8 @@ ************* Entry structure ******************************************** ************************************************************************** Job_Name: { // Job names as in src/map/pc.c (they are hardcoded at the moment so if you want to add a new job you should add it there) + BaseExpGroup: "Exp Group Name" (string) // Name of base exp group defined in exp_group_db.conf + JobExpGroup: "Exp Group Name" (string) // Name of job exp group defined in exp_group_db.conf Inherit: ("Other_Job_Name") // Base job from which this job will inherit its max weight, base ASPD set and HP/SP table. InheritHP: ("Other_Job_Name") // Base job from which this job will inherit its HP table (if different). InheritSP: ("Other_Job_Name") // Base job from which this job will inherit its SP table (if different). |