summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2010-01-04 20:41:34 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2010-01-04 20:53:14 +1000
commit7403a3dfc98efc2329b4bd184807a398d518816e (patch)
tree952c1d2cf0fcd033ae073a4dfcf4919ce4239790 /crawl-ref/source
parent37ca61fa33fb9dc6dea480044d91bbfcf45d3932 (diff)
downloadcrawl-ref-7403a3dfc98efc2329b4bd184807a398d518816e.tar.gz
crawl-ref-7403a3dfc98efc2329b4bd184807a398d518816e.zip
Fix skills order issue with Sage card. (sorear)
This commit bumps TAG_MAJOR_VERSION.
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/enum.h3
-rw-r--r--crawl-ref/source/main.cc2
-rw-r--r--crawl-ref/source/tags.h2
3 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 6c92000089..e29eb1d3e1 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2624,8 +2624,7 @@ enum skill_type
SK_SLINGS,
SK_BOWS,
SK_CROSSBOWS,
- // was darts, now unused
- SK_THROWING = 11,
+ SK_THROWING,
SK_ARMOUR,
SK_DODGING,
SK_STEALTH,
diff --git a/crawl-ref/source/main.cc b/crawl-ref/source/main.cc
index 1ccf335ed8..9a46737ce1 100644
--- a/crawl-ref/source/main.cc
+++ b/crawl-ref/source/main.cc
@@ -4569,7 +4569,7 @@ static void _compile_time_asserts()
{
// Check that the numbering comments in enum.h haven't been
// disturbed accidentally.
- COMPILE_CHECK(SK_UNARMED_COMBAT == 18 , c1);
+ COMPILE_CHECK(SK_UNARMED_COMBAT == 17 , c1);
COMPILE_CHECK(SK_EVOCATIONS == 38 , c2);
COMPILE_CHECK(SP_VAMPIRE == 30 , c3);
COMPILE_CHECK(SPELL_DEBUGGING_RAY == 102 , c4);
diff --git a/crawl-ref/source/tags.h b/crawl-ref/source/tags.h
index 9660a40b54..bc5045bec8 100644
--- a/crawl-ref/source/tags.h
+++ b/crawl-ref/source/tags.h
@@ -40,7 +40,7 @@ enum tag_file_type // file types supported by tag system
enum tag_major_version
{
TAG_MAJOR_START = 5,
- TAG_MAJOR_VERSION = 14
+ TAG_MAJOR_VERSION = 15
};
// Minor version will be reset to zero when major version changes.