From 73ad36cce173502c226edc839ef06c3fe9f90853 Mon Sep 17 00:00:00 2001 From: skotlex Date: Thu, 13 Apr 2006 15:56:22 +0000 Subject: - Fixed crash when looking for SC_MIRACLE in battle_calc_weapon_attack - Some more standard C code cleanups. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6038 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/charcommand.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/map/charcommand.c') 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; -- cgit v1.2.3-70-g09d2