summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.h
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-21 17:49:24 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-21 17:49:24 +0000
commit0a930fa79787f0e7f4b4ab2f4e223b58b58690c7 (patch)
tree7f8b16f8378873a9564c98a8e8e1104923aed5cd /crawl-ref/source/player.h
parenta8a6b89f6b751da432faa31b9be145ec8532294f (diff)
downloadcrawl-ref-0a930fa79787f0e7f4b4ab2f4e223b58b58690c7.tar.gz
crawl-ref-0a930fa79787f0e7f4b4ab2f4e223b58b58690c7.zip
Make Zin dislike when the player takes an action that makes an already
existing mutagenic glow stronger (piety loss, no penalty). At the same time go easier on the "eat souled being" misbehaviour: increased piety loss, but give penance only for eating very intelligent monsters, so that eating goblins and the like is an option again. (Cannibalism is checked first, and has worse effects.) Also fix restriction for items offered for ?recharging. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3789 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.h')
-rw-r--r--crawl-ref/source/player.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/player.h b/crawl-ref/source/player.h
index 11840c558d..9ea9964557 100644
--- a/crawl-ref/source/player.h
+++ b/crawl-ref/source/player.h
@@ -400,7 +400,8 @@ void set_mp(int new_amount, bool max_too);
/* ***********************************************************************
* called from:
* *********************************************************************** */
-void contaminate_player(int change, bool statusOnly = false);
+void contaminate_player(int change, bool controlled = false,
+ bool status_only = false);
/* @return true iff they were poisoned (false if they are immune) */
bool poison_player( int amount, bool force = false );