summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-05 10:28:43 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-05 10:28:43 +0000
commita44d0b13e56bcf101fc324432ec48c473b249fca (patch)
treed937d085c2efdfc7d7888f8d49662e6c0a69e3a6 /crawl-ref
parent9966b0d518c0d1d7f816c425799e86480423e07c (diff)
downloadcrawl-ref-a44d0b13e56bcf101fc324432ec48c473b249fca.tar.gz
crawl-ref-a44d0b13e56bcf101fc324432ec48c473b249fca.zip
Incorporate patches 1825023 (typos) and 1824868 (bug in fully_contains().)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2765 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/decks.cc2
-rw-r--r--crawl-ref/source/dungeon.h2
-rw-r--r--crawl-ref/source/hiscores.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index 22856c2c7a..bab696eee3 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -1983,7 +1983,7 @@ static void genie_card(int power, deck_rarity_type rarity)
{
if ( coinflip() )
{
- mpr("A genie takes forms and thunders: "
+ mpr("A genie takes form and thunders: "
"\"Choose your reward, mortal!\"");
more();
acquirement( OBJ_RANDOM, AQ_CARD_GENIE );
diff --git a/crawl-ref/source/dungeon.h b/crawl-ref/source/dungeon.h
index 92f5d682ec..1b903a8744 100644
--- a/crawl-ref/source/dungeon.h
+++ b/crawl-ref/source/dungeon.h
@@ -128,7 +128,7 @@ struct dgn_region
bool fully_contains(const coord_def &p) const
{
return (p.x > pos.x && p.x < pos.x + size.x - 1
- && p.y >= pos.y && p.y < pos.y + size.y - 1);
+ && p.y > pos.y && p.y < pos.y + size.y - 1);
}
bool overlaps(const dgn_region &other) const;
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index 0223f4ebf9..dd06f0a0c7 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -1282,7 +1282,7 @@ scorefile_entry::character_description(death_desc_verbosity verbosity) const
}
else if (god != GOD_NO_GOD)
{
- // Not exactly the same as the religon screen, but
+ // Not exactly the same as the religion screen, but
// good enough to fill this slot for now.
snprintf( scratch, INFO_SIZE, "Was %s of %s%s",
(piety > 160) ? "the Champion" :