summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-01-17 00:17:24 +0300
committerAndrei Karas <akaras@inbox.ru>2015-01-19 19:44:21 +0300
commitb019a67078a5d4f5480ae8a618bb291e7802a95c (patch)
tree6fded7adf5b75cca39fb85d2fc221d89e27c1770 /src/map/pc.c
parente3426296a6add20845bd08013355fd3d5f975556 (diff)
downloadhercules-b019a67078a5d4f5480ae8a618bb291e7802a95c.tar.gz
hercules-b019a67078a5d4f5480ae8a618bb291e7802a95c.tar.bz2
hercules-b019a67078a5d4f5480ae8a618bb291e7802a95c.tar.xz
hercules-b019a67078a5d4f5480ae8a618bb291e7802a95c.zip
Extract exp table validation into separate function.
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c27
1 files changed, 17 insertions, 10 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 09194fbab..b64bdea80 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -10357,16 +10357,7 @@ int pc_readdb(void) {
}
}
fclose(fp);
- for (i = 0; i < JOB_MAX; i++) {
- if (!pc->db_checkid(i)) continue;
- if (i == JOB_WEDDING || i == JOB_XMAS || i == JOB_SUMMER)
- continue; //Classes that do not need exp tables.
- j = pc->class2idx(i);
- if (!pc->max_level[j][0])
- ShowWarning("Class %s (%d) does not has a base exp table.\n", pc->job_name(i), i);
- if (!pc->max_level[j][1])
- ShowWarning("Class %s (%d) does not has a job exp table.\n", pc->job_name(i), i);
- }
+ pc->validate_levels();
ShowStatus("Done reading '"CL_WHITE"%u"CL_RESET"' entries in '"CL_WHITE"%s/"DBPATH"%s"CL_RESET"'.\n",count,map->db_path,"exp.txt");
count = 0;
// Reset and read skilltree
@@ -10481,6 +10472,21 @@ int pc_readdb(void) {
return 0;
}
+void pc_validate_levels(void) {
+ int i;
+ int j;
+ for (i = 0; i < JOB_MAX; i++) {
+ if (!pc->db_checkid(i)) continue;
+ if (i == JOB_WEDDING || i == JOB_XMAS || i == JOB_SUMMER)
+ continue; //Classes that do not need exp tables.
+ j = pc->class2idx(i);
+ if (!pc->max_level[j][0])
+ ShowWarning("Class %s (%d) does not has a base exp table.\n", pc->job_name(i), i);
+ if (!pc->max_level[j][1])
+ ShowWarning("Class %s (%d) does not has a job exp table.\n", pc->job_name(i), i);
+ }
+}
+
void pc_itemcd_do(struct map_session_data *sd, bool load) {
int i,cursor = 0;
struct item_cd* cd = NULL;
@@ -11219,6 +11225,7 @@ void pc_defaults(void) {
pc->global_expiration_timer = pc_global_expiration_timer;
pc->expire_check = pc_expire_check;
pc->db_checkid = pc_db_checkid;
+ pc->validate_levels = pc_validate_levels;
/**
* Autotrade persistency [Ind/Hercules <3]