X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=src%2Fdungeon.c;h=955eeea5a33251ce10609b2b00d3100c3821011c;hb=5754437802a62c3425fca4d0c604677d154c6c0f;hp=21370452b97972bfa90d92b18dfc64e017d10674;hpb=84d688320e42c57778aab86b3fa9d2319d694bfd;p=hengband%2Fhengband.git diff --git a/src/dungeon.c b/src/dungeon.c index 21370452b..955eeea5a 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -3395,7 +3395,8 @@ if (!get_rnd_line("chainswd_j.txt", 0, noise)) (void)activate_ty_curse(FALSE, &count); } /* Handle experience draining */ - if ((p_ptr->cursed & TRC_DRAIN_EXP) && one_in_(4)) + if (p_ptr->prace != RACE_ANDROID && + ((p_ptr->cursed & TRC_DRAIN_EXP) && one_in_(4))) { p_ptr->exp -= (p_ptr->lev+1)/2; if (p_ptr->exp < 0) p_ptr->exp = 0;