summaryrefslogtreecommitdiff
path: root/src/map/charcommand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/charcommand.c')
-rw-r--r--src/map/charcommand.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/charcommand.c b/src/map/charcommand.c
index 72a05288a..6c589473e 100644
--- a/src/map/charcommand.c
+++ b/src/map/charcommand.c
@@ -481,7 +481,7 @@ int charcommand_stats(
int value;
} output_table[] = {
{ "Base Level - %d", 0 },
- { job_jobname, 0 },
+ { NULL, 0 },
{ "Hp - %d", 0 },
{ "MaxHp - %d", 0 },
{ "Sp - %d", 0 },
@@ -497,6 +497,7 @@ int charcommand_stats(
};
//direct array initialization with variables is not standard C compliant.
output_table[0].value = pl_sd->status.base_level;
+ output_table[1].format = job_jobname;
output_table[1].value = pl_sd->status.job_level;
output_table[2].value = pl_sd->status.hp;
output_table[3].value = pl_sd->status.max_hp;