summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/xom.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/xom.h')
-rw-r--r--crawl-ref/source/xom.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/xom.h b/crawl-ref/source/xom.h
index 0ecba36714..843a94bbbd 100644
--- a/crawl-ref/source/xom.h
+++ b/crawl-ref/source/xom.h
@@ -25,12 +25,12 @@ void xom_is_stimulated(int maxinterestingness,
void xom_is_stimulated(int maxinterestingness, const std::string& message,
bool force_message = false);
bool xom_is_nice();
-void xom_acts(bool niceness, int sever);
+void xom_acts(bool niceness, int sever, int tension = -1);
const char *describe_xom_favour();
-inline void xom_acts(int sever)
+inline void xom_acts(int sever, int tension = -1)
{
- xom_acts(xom_is_nice(), sever);
+ xom_acts(xom_is_nice(), sever, tension);
}
void xom_check_lost_item(const item_def& item);