From 649129f7d0875fc715c6acd444726934696dbe45 Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Tue, 17 Nov 2009 22:00:47 +0100 Subject: Typo: "consuming 0 spell level". --- crawl-ref/source/spl-book.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/spl-book.cc') diff --git a/crawl-ref/source/spl-book.cc b/crawl-ref/source/spl-book.cc index 33a2de822b..3cff4f6e55 100644 --- a/crawl-ref/source/spl-book.cc +++ b/crawl-ref/source/spl-book.cc @@ -1799,7 +1799,7 @@ bool learn_spell(spell_type specspell, int book, bool is_safest_book) snprintf(info, INFO_SIZE, "Memorise %s, consuming %d spell level%s and leaving %d?", spell_title(specspell), spell_levels_required(specspell), - spell_levels_required(specspell) > 1 ? "s" : "", + spell_levels_required(specspell) != 1 ? "s" : "", player_spell_levels() - spell_levels_required(specspell)); // Deactivate choice from tile inventory. -- cgit v1.2.3-54-g00ecf