From 90d9577ea254baac92c76931361d048d983fb6c0 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Fri, 3 Apr 2009 21:00:12 +0000 Subject: Make Ely's "Destroy Weapons" start at 'a', and increment the letters for the other god abilities from there. The same could be said for Trog's "Burn Books" but that isn't used as often, nor as early, as Destroy Weapons. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9576 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/abl-show.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'crawl-ref/source/abl-show.cc') diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc index aeda24ca21..d7a2d1e501 100644 --- a/crawl-ref/source/abl-show.cc +++ b/crawl-ref/source/abl-show.cc @@ -2342,6 +2342,10 @@ void set_god_ability_slots() // Finally, add in current god's invocations in traditional slots. int num = 0; + + if (you.religion == GOD_ELYVILON) + _set_god_ability_helper(ABIL_ELYVILON_DESTROY_WEAPONS, 'a' + num++); + for (int i = 0; i < MAX_GOD_ABILITIES; ++i) { if (god_abilities[you.religion][i] != ABIL_NON_ABILITY) -- cgit v1.2.3-54-g00ecf