From e0d26c7163146529f70c822219dc0bc3cb0e4632 Mon Sep 17 00:00:00 2001 From: copperwater Date: Mon, 8 Aug 2022 18:08:38 -0400 Subject: [PATCH] Refer to non-damaging gas cloud as "steam" You can create steam clouds that are gray and deal 0 damage when zapping fire at or over water sources. If you happen to be in the cloud, it produced the "You are enveloped in a cloud of noxious gas!" line, and steam isn't noxious. Other uses of "gas cloud" could have potentially been changed, but I left them alone. --- src/region.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/region.c b/src/region.c index a96657d24..33f8a7995 100644 --- a/src/region.c +++ b/src/region.c @@ -1175,7 +1175,8 @@ create_gas_cloud(coordxy x, coordxy y, int cloudsize, int damage) add_region(cloud); if (!g.in_mklev && !inside_cloud && is_hero_inside_gas_cloud()) - You("are enveloped in a cloud of noxious gas!"); + You("are enveloped in a cloud of %s!", + damage ? "noxious gas" : "steam"); return cloud; }