summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/emap/pc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emap/pc.c b/src/emap/pc.c
index 07dd75d..d87b132 100644
--- a/src/emap/pc.c
+++ b/src/emap/pc.c
@@ -267,9 +267,9 @@ void epc_validate_levels_pre(void)
if (pc->job_is_dummy(i))
continue; //Classes that do not need exp tables.
int j = pc->class2idx(i);
- if (pc->max_level[j][0] == 0)
+ if (pc->dbs->class_exp_table[j][CLASS_EXP_TABLE_BASE] == NULL)
ShowWarning("Class %d does not has a base exp table.\n", i);
- if (pc->max_level[j][1] == 0)
+ if (pc->dbs->class_exp_table[j][CLASS_EXP_TABLE_JOB] == NULL)
ShowWarning("Class %d does not has a job exp table.\n", i);
}
hookStop();