summaryrefslogtreecommitdiff
path: root/src/map/charcommand.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-13 15:56:22 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-13 15:56:22 +0000
commit73ad36cce173502c226edc839ef06c3fe9f90853 (patch)
treec92e383c11e7d5efcca16226b01afa640216ae69 /src/map/charcommand.c
parent74ae20b906cbdf6b0c17afa6d9911e5c3e58f161 (diff)
downloadhercules-73ad36cce173502c226edc839ef06c3fe9f90853.tar.gz
hercules-73ad36cce173502c226edc839ef06c3fe9f90853.tar.bz2
hercules-73ad36cce173502c226edc839ef06c3fe9f90853.tar.xz
hercules-73ad36cce173502c226edc839ef06c3fe9f90853.zip
- 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
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;