summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/skills.h
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2012-02-09 16:34:01 +0100
committerRaphael Langella <raphael.langella@gmail.com>2012-02-09 16:34:01 +0100
commitd15ca121bfe630ada36e6791cc1ab425cb702343 (patch)
tree1b4acc50f01ccf4864ad0379acab6eb37b4855b7 /crawl-ref/source/skills.h
parent815a96290c603a2b21fc9328d299a95997075e3c (diff)
downloadcrawl-ref-d15ca121bfe630ada36e6791cc1ab425cb702343.tar.gz
crawl-ref-d15ca121bfe630ada36e6791cc1ab425cb702343.zip
Allow float input when setting skills with wizmode commands.
Diffstat (limited to 'crawl-ref/source/skills.h')
-rw-r--r--crawl-ref/source/skills.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/skills.h b/crawl-ref/source/skills.h
index 13e183f11c..d70b96fd2f 100644
--- a/crawl-ref/source/skills.h
+++ b/crawl-ref/source/skills.h
@@ -35,5 +35,5 @@ void train_skill(skill_type skill, int exp);
bool skill_trained(int i);
inline bool skill_trained(skill_type sk) { return skill_trained((int) sk); }
void redraw_skill(skill_type exsk, skill_type old_best_skill = SK_NONE);
-void set_skill_level(skill_type skill, int amount);
+void set_skill_level(skill_type skill, double amount);
#endif