summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index ecbe9d0589..9fb84288f2 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -1585,6 +1585,11 @@ static bool do_ability(const ability_def& abil)
case ABIL_LUGONU_BANISH:
if ( !spell_direction(spd, beam, DIR_NONE, TARG_ENEMY) )
return (false);
+ if (beam.target_x == you.x_pos && beam.target_y == you.y_pos)
+ {
+ mpr("You cannot banish yourself!");
+ return (false);
+ }
zapping( ZAP_BANISHMENT, 16 + you.skills[SK_INVOCATIONS] * 8, beam );
exercise(SK_INVOCATIONS, 3 + random2(5));
break;