From 60739d905fb591cbab819d6b56a5a510584d25ee Mon Sep 17 00:00:00 2001 From: Alex MacDonald Date: Sat, 14 Nov 2009 18:45:17 -0500 Subject: Shaft trap behavior modified. They now are one-time use and pre-knowledge of shaft traps (i.e. using them intentionally) will improve the chances of the player landing fewer levels away. Shaft traps also now randomly determine their destination. Monsters cannot follow the player through shaft traps. Signed-off-by: David Ploog --- crawl-ref/source/monster.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/monster.cc') diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc index ad1d1b499c..abedfba501 100644 --- a/crawl-ref/source/monster.cc +++ b/crawl-ref/source/monster.cc @@ -5564,7 +5564,7 @@ bool monsters::do_shaft() } } - level_id lev = shaft_dest(); + level_id lev = shaft_dest(false); if (lev == level_id::current()) return (false); -- cgit v1.2.3-54-g00ecf