summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index f04a9e4094..1bc4a67654 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -2919,6 +2919,9 @@ void forget_map(unsigned char chance_forgotten, bool force)
void gain_exp( unsigned int exp_gained, unsigned int* actual_gain,
unsigned int* actual_avail_gain)
{
+ if (crawl_state.arena)
+ return;
+
if (player_equip_ego_type( EQ_BODY_ARMOUR, SPARM_ARCHMAGI ))
exp_gained = div_rand_round( exp_gained, 4 );
@@ -6941,6 +6944,9 @@ bool player::visible_to(const actor *looker) const
bool player::can_see(const actor *target) const
{
+ if (crawl_state.arena)
+ return target->visible_to(this);
+
if (this == target)
return visible_to(target);