From 34eb4d520156a2a22999597c321f201f151b450b Mon Sep 17 00:00:00 2001 From: codemaster Date: Wed, 10 Nov 2004 21:59:53 +0000 Subject: [PATCH] git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@106 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/char/char.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/char/char.c b/src/char/char.c index 92880b84d6..399ac2a5cb 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -3225,11 +3225,11 @@ int char_config_read(const char *cfgName) { if (start_zeny < 0) start_zeny = 0; } else if (strcmpi(w1, "start_weapon") == 0) { - start_zeny = atoi(w2); + start_weapon = atoi(w2); if (start_weapon < 0) start_weapon = 0; } else if (strcmpi(w1, "start_armor") == 0) { - start_zeny = atoi(w2); + start_armor = atoi(w2); if (start_armor < 0) start_armor = 0; } else if (strcmpi(w1, "unknown_char_name") == 0) {