summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/misc.h')
-rw-r--r--crawl-ref/source/misc.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/crawl-ref/source/misc.h b/crawl-ref/source/misc.h
index 9e71adead8..2223757511 100644
--- a/crawl-ref/source/misc.h
+++ b/crawl-ref/source/misc.h
@@ -113,7 +113,12 @@ void curare_hits_player(int agent, int degree);
bool mons_is_safe(const monsters *mon, bool want_move = false);
-bool i_feel_safe(bool announce = false, bool want_move = false);
+void get_playervisible_monsters(std::vector<monsters*>& mons,
+ bool just_check = false, bool want_move = false,
+ bool dangerous = false, int range = -1);
+
+bool i_feel_safe(bool announce = false, bool want_move = false,
+ bool just_monsters = false, int range = -1);
void setup_environment_effects();
@@ -137,6 +142,4 @@ bool interrupt_cmd_repeat( activity_interrupt_type ai,
void reveal_secret_door(int x, int y);
-void get_playervisible_monsters(std::vector<monsters*>& mons);
-
#endif