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.
This commit is contained in:
copperwater
2022-08-08 18:08:38 -04:00
committed by Pasi Kallinen
parent ddce73502e
commit e0d26c7163

View File

@@ -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;
}