]> granicus.if.org Git - nethack/commitdiff
Poison breath leaves a trail of poison gas clouds
authorPasi Kallinen <paxed@alt.org>
Wed, 6 Jan 2016 14:05:40 +0000 (16:05 +0200)
committerPasi Kallinen <paxed@alt.org>
Wed, 6 Jan 2016 14:05:43 +0000 (16:05 +0200)
Original patch by L

doc/fixes36.1
src/zap.c

index 292a9ff31cc71a8415e48420f0cbdaad754cb3c3..e957b09fd823b8955cb9f8fefda907688ca4a60d 100644 (file)
@@ -97,6 +97,7 @@ make commands that accept a count prefix for item selection
 allow picking a used inventory letter from menu when #adjusting
 zapping wand of opening at yourself, unlock carried boxes
 dissolve iron bars by force-fighting with wielded potion of acid
+poison breath leaves a trail of poison gas
 
 
 Platform- and/or Interface-Specific Fixes
index 1aaa3d14e20b6a358634c6d1f9c27e4f5928e4dd..0749c8dbf498c852ed28b6a7a70f4fab5e45b7cd 100644 (file)
--- a/src/zap.c
+++ b/src/zap.c
@@ -4312,6 +4312,10 @@ short exploding_wand_typ;
         }
         break; /* ZT_COLD */
 
+    case ZT_POISON_GAS:
+        (void) create_gas_cloud(x, y, 1, 8);
+        break;
+
     case ZT_ACID:
         if (lev->typ == IRONBARS) {
             if ((lev->wall_info & W_NONDIGGABLE) != 0) {