From da0e660110c85d2bfce393abb4ec71d836ed6504 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Wed, 6 Jan 2016 16:05:40 +0200 Subject: [PATCH] Poison breath leaves a trail of poison gas clouds Original patch by L --- doc/fixes36.1 | 1 + src/zap.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/doc/fixes36.1 b/doc/fixes36.1 index 292a9ff3..e957b09f 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 1aaa3d14..0749c8db 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) { -- 2.11.4.GIT