summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-23 16:53:23 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-23 16:53:23 +0000
commitd5968daee172a5cbe5d3e35807b66e6e7a167783 (patch)
tree41031a1e741b2d68aafacce75a94d9723981b4a4 /crawl-ref/source/tutorial.cc
parent1d68d70963ec82ff2c70ec9f82c0e776a79079d7 (diff)
downloadcrawl-ref-d5968daee172a5cbe5d3e35807b66e6e7a167783.tar.gz
crawl-ref-d5968daee172a5cbe5d3e35807b66e6e7a167783.zip
Add more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4549 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 73c2a8bcd2..eea9634b97 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -795,7 +795,8 @@ void tutorial_dissection_reminder(bool healthy)
if (Options.tut_just_triggered || !Options.tutorial_left)
return;
- // when hungry, give appropriate message or at least don't suggest sacrifice
+ // when hungry, give appropriate message or at least don't suggest
+ // sacrifice
if (you.hunger_state < HS_SATIATED && healthy)
{
learned_something_new(TUT_MAKE_CHUNKS);
@@ -1697,7 +1698,7 @@ void learned_something_new(tutorial_event_type seen_what, int x, int y)
case TUT_OFFER_CORPSE:
if (!god_likes_butchery(you.religion)
- || you.hunger_state <= HS_HUNGRY)
+ || you.hunger_state < HS_SATIATED)
{
return;
}