From 0b13c2ca9a413cabe0bfe4ba38337735cd36d34a Mon Sep 17 00:00:00 2001 From: nothere Date: Fri, 25 Jul 2003 01:30:39 +0000 Subject: [PATCH] =?utf8?q?=E5=B0=84=E6=92=83=E6=AD=A6=E5=99=A8=E3=81=AE?= =?utf8?q?=E7=86=9F=E7=B7=B4=E5=BA=A6=E3=81=AE=E8=A8=98=E5=8F=B7=E5=AE=9A?= =?utf8?q?=E6=95=B0=E5=8C=96=E3=82=92=E9=96=93=E9=81=95=E3=81=88=E3=81=A6?= =?utf8?q?=E3=81=8A=E3=82=8A,=20=E7=86=9F=E7=B7=B4=E5=BA=A6=E3=81=8C[?= =?utf8?q?=E5=88=9D=E5=BF=83=E8=80=85]=E3=81=8B=E3=82=89=E4=B8=8A=E3=81=8C?= =?utf8?q?=20=E3=82=89=E3=81=AA=E3=81=8F=E3=81=AA=E3=82=8B=E3=83=90?= =?utf8?q?=E3=82=B0=E3=82=92=E4=BF=AE=E6=AD=A3.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/cmd2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cmd2.c b/src/cmd2.c index 570a2f209..0a40e15b7 100644 --- a/src/cmd2.c +++ b/src/cmd2.c @@ -3826,9 +3826,9 @@ void do_cmd_fire_aux(int item, object_type *j_ptr) if (now_exp < s_info[p_ptr->pclass].w_max[0][j_ptr->sval]) { int amount = 0; - if (now_exp < SPELL_EXP_BEGINNER) amount = 80; - else if (now_exp < SPELL_EXP_SKILLED) amount = 25; - else if ((now_exp < SPELL_EXP_EXPERT) && (p_ptr->lev > 19)) amount = 10; + if (now_exp < WEAPON_EXP_BEGINNER) amount = 80; + else if (now_exp < WEAPON_EXP_SKILLED) amount = 25; + else if ((now_exp < WEAPON_EXP_EXPERT) && (p_ptr->lev > 19)) amount = 10; else if (p_ptr->lev > 34) amount = 2; p_ptr->weapon_exp[0][j_ptr->sval] += amount; p_ptr->update |= (PU_BONUS); -- 2.11.0