]> granicus.if.org Git - nethack/commitdiff
Make demon gating show a message
authorPasi Kallinen <paxed@alt.org>
Sun, 20 Jan 2019 13:56:40 +0000 (15:56 +0200)
committerPasi Kallinen <paxed@alt.org>
Sun, 20 Jan 2019 13:56:44 +0000 (15:56 +0200)
This was both an accessibility and comprehensibility issue.

doc/fixes36.2
src/minion.c

index 141c135845f1030a92abf130d39ac798ab7dd228..f4130f94d0d064473897bf72d4c4e6839844cf1f 100644 (file)
@@ -342,6 +342,7 @@ the simulation of dual weapon combat when polymorphed into a form with more
        used seconary weapon even when wearing a shield, or if it was silver
        even when current shape couldn't handle silver, or if it was cursed;
        cursed is allowed but weapon will be dropped, just like in two-weapon
+demons gated in other demons without any message
 
 
 Fixes to Post-3.6.1 Problems that Were Exposed Via git Repository
index 9735721844d880213ea0f2fed412400ad471b746..7d4c6b9c8b35a17fe442d75a82c103d629ca034b 100644 (file)
@@ -143,6 +143,8 @@ struct monst *mon;
                 EMIN(mtmp)->renegade =
                     (atyp != u.ualign.type) ^ !mtmp->mpeaceful;
             }
+            if (is_demon(ptr) && canseemon(mtmp))
+                pline("%s appears in a cloud of smoke!", Amonnam(mtmp));
         }
         cnt--;
     }