From: Pasi Kallinen Date: Wed, 6 Jan 2016 14:05:40 +0000 (+0200) Subject: Poison breath leaves a trail of poison gas clouds X-Git-Tag: NetHack-3.6.1_RC01~1064^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da0e660110c85d2bfce393abb4ec71d836ed6504;p=nethack Poison breath leaves a trail of poison gas clouds Original patch by L --- diff --git a/doc/fixes36.1 b/doc/fixes36.1 index 292a9ff31..e957b09fd 100644 --- a/doc/fixes36.1 +++ b/doc/fixes36.1 @@ -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 diff --git a/src/zap.c b/src/zap.c index 1aaa3d14e..0749c8dbf 100644 --- 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) {