From 4e0b087706432e72753829db68265ef369428fe7 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Mon, 15 Jul 2013 17:30:16 +0200 Subject: !oExperience always grants 100K XP If you're lucky enough to find it early, you should be able to take full advantage of it. --- src/cmd6.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cmd6.c b/src/cmd6.c index ce49b155..ab82bc17 100644 --- a/src/cmd6.c +++ b/src/cmd6.c @@ -2280,10 +2280,8 @@ static bool_ quaff_potion(int tval, int sval, int pval, int pval2) { if (p_ptr->exp < PY_MAX_EXP) { - s32b ee = (p_ptr->exp / 2) + 10; - if (ee > 100000L) ee = 100000L; msg_print("You feel more experienced."); - gain_exp(ee); + gain_exp(100000L); ident = TRUE; } -- cgit v1.2.3