From e4f58176388fa16d5f76815af0900a35d9e61627 Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Sat, 10 Oct 2009 23:07:21 -0400 Subject: Patch 2873911 by Jude: add rain clouds --- crawl-ref/source/spells1.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'crawl-ref/source/spells1.cc') diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc index 69181d7834..183855936b 100644 --- a/crawl-ref/source/spells1.cc +++ b/crawl-ref/source/spells1.cc @@ -1463,6 +1463,12 @@ void cast_teleport_control(int power) void cast_ring_of_flames(int power) { + // You shouldn't be able to cast this in the rain. {due} + if (in_what_cloud(CLOUD_RAIN)) + { + mpr("Your spell sizzles in the rain."); + return; + } _increase_duration(DUR_FIRE_SHIELD, 5 + (power / 10) + (random2(power) / 5), 50, "The air around you leaps into flame!"); -- cgit v1.2.3-54-g00ecf