diff options
author | Bardur Arantsson <bardur@scientician.net> | 2012-06-09 17:18:46 +0200 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2012-06-09 17:22:03 +0200 |
commit | cbe5a2de1592e402808e962de8d346829aa5aba4 (patch) | |
tree | afc80b9199dd18c9bc112617bdd856bf9291e506 /lib/scpt/help.lua | |
parent | 4da2e8d9545698b9fc7936e5f6d9a137d0b7c930 (diff) |
Lua: Move "ability" help to C
Diffstat (limited to 'lib/scpt/help.lua')
-rw-r--r-- | lib/scpt/help.lua | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/scpt/help.lua b/lib/scpt/help.lua index 421cdb11..9d53ba40 100644 --- a/lib/scpt/help.lua +++ b/lib/scpt/help.lua @@ -24,20 +24,6 @@ ingame_help -- list of files for classes, { filename, anchor } local t = { - ["ability"] = - { - ["Spread blows"] = { "ability.txt", 02 }, - ["Tree walking"] = { "ability.txt", 03 }, - ["Perfect casting"] = { "ability.txt", 04 }, - ["Extra Max Blow(1)"] = { "ability.txt", 05 }, - ["Extra Max Blow(2)"] = { "ability.txt", 06 }, - ["Ammo creation"] = { "ability.txt", 07 }, - ["Touch of death"] = { "ability.txt", 08 }, - ["Artifact Creation"] = { "ability.txt", 09 }, - ["Far reaching attack"] = { "ability.txt", 10 }, - ["Trapping"] = { "ability.txt", 11 }, - ["Undead Form"] = { "ability.txt", 12 }, - }, } if t[typ][name] then ingame_help_doc(t[typ][name][1], t[typ][name][2]) |