]> granicus.if.org Git - nethack/commitdiff
place_monster() warning bit
authorPatR <rankin@nethack.org>
Thu, 13 Dec 2018 01:54:53 +0000 (17:54 -0800)
committerPatR <rankin@nethack.org>
Thu, 13 Dec 2018 01:54:53 +0000 (17:54 -0800)
src/steed.c

index 9eaf8f4c0c3b91401c3bd29bffecaa4ddb7a65a8..a90a0ce86a01bbd98868933f919df2dad0ccb727 100644 (file)
@@ -1,4 +1,4 @@
-/* NetHack 3.6 steed.c $NHDT-Date: 1544608468 2018/12/12 09:54:28 $  $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.60 $ */
+/* NetHack 3.6 steed.c $NHDT-Date: 1544666049 2018/12/13 01:54:09 $  $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.61 $ */
 /* Copyright (c) Kevin Hugo, 1998-1999. */
 /* NetHack may be freely redistributed.  See license for details. */
 
@@ -756,7 +756,7 @@ int x, y;
         return;
     }
     if (level.monsters[x][y])
-        impossible("placing monster over another?");
+        impossible("placing monster over another at <%d,%d>?", x, y);
     mon->mx = x, mon->my = y;
     level.monsters[x][y] = mon;
 }