summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-01 17:47:12 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-01 17:47:12 +0000
commit111bc545dbfb2041ed8dec70cea2e3e932436169 (patch)
tree2869c0181cc525961558e9b77a688cb20c6e81f9
parent5894cb7935a38dc9ade1f3fb9efc8a6cdeab9004 (diff)
downloadcrawl-ref-111bc545dbfb2041ed8dec70cea2e3e932436169.tar.gz
crawl-ref-111bc545dbfb2041ed8dec70cea2e3e932436169.zip
Spelling fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5409 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/decks.cc2
-rw-r--r--crawl-ref/source/enum.h2
-rw-r--r--crawl-ref/source/player.cc4
3 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index 1fb01e6a6d..e6c18f591d 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -1481,7 +1481,7 @@ static void _flight_card(int power, deck_rarity_type rarity)
{
const int i = trap_at_xy(you.x_pos, you.y_pos);
grd[you.x_pos][you.y_pos] = trap_category(env.trap[i].type);
- mpr("A shaft materializes beneath you!");
+ mpr("A shaft materialises beneath you!");
}
}
}
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 7f773e82a7..425e92b957 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2566,7 +2566,7 @@ enum spell_type
SPELL_EVAPORATE, // turn a potion into a cloud 190
SPELL_ERINGYAS_SURPRISING_BOUQUET, // turn sticks into herbivore food
SPELL_FRAGMENTATION, // replacement for "orb of frag"
- SPELL_AIR_WALK, // "dematerialize" (air/transmigration)
+ SPELL_AIR_WALK, // "dematerialise" (air/transmigration)
SPELL_SANDBLAST, // mini-frag; can use stones for material comp
SPELL_ROTTING, // evil god power or necromantic transmigration
SPELL_MAXWELLS_SILVER_HAMMER, // vorpal-brand maces etc.
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index cc1d679618..84feba599b 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -960,8 +960,8 @@ int player_regen(void)
rr += player_mutation_level(MUT_REGENERATION) * 20;
// ghouls heal slowly
- // dematerialized people heal slowly
- // dematerialized ghouls shouldn't heal any more slowly -- bwr
+ // dematerialised people heal slowly
+ // dematerialised ghouls shouldn't heal any more slowly -- bwr
if ((you.species == SP_GHOUL
&& (you.attribute[ATTR_TRANSFORMATION] == TRAN_NONE
|| you.attribute[ATTR_TRANSFORMATION] == TRAN_BLADE_HANDS))