summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-11-25 18:28:57 +0100
committerAdam Borowski <kilobyte@angband.pl>2010-11-25 18:47:01 +0100
commitd509b89e63a49cb4e48bac031cda2d785bd968a0 (patch)
tree431bac9620e3030e3ee36169917e5e62ef3c0965 /crawl-ref/source/notes.h
parent3a1f44834a77762edbbf7740f324bdd48e13b52d (diff)
downloadcrawl-ref-d509b89e63a49cb4e48bac031cda2d785bd968a0.tar.gz
crawl-ref-d509b89e63a49cb4e48bac031cda2d785bd968a0.zip
Revert bump of the major save version.
Diffstat (limited to 'crawl-ref/source/notes.h')
-rw-r--r--crawl-ref/source/notes.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/notes.h b/crawl-ref/source/notes.h
index f1bda0e97a..2c0f58befb 100644
--- a/crawl-ref/source/notes.h
+++ b/crawl-ref/source/notes.h
@@ -33,7 +33,9 @@ enum NOTE_TYPES
NOTE_ID_ITEM, /* needs: item name (string) */
NOTE_GET_ITEM, /* needs: item name (string) */
NOTE_GAIN_SKILL, /* needs: skill id, level */
+#if TAG_MAJOR_VERSION > 31
NOTE_LOSE_SKILL, /* needs: skill id, level */
+#endif
NOTE_SEEN_MONSTER, /* needs: monster name (string) */
NOTE_KILL_MONSTER, /* needs: monster name (string) */
NOTE_POLY_MONSTER, /* needs: monster name (string) */
@@ -48,6 +50,9 @@ enum NOTE_TYPES
NOTE_SEEN_FEAT, /* needs: feature seen (string) */
NOTE_XOM_EFFECT, /* needs: description (name string) */
NOTE_XOM_REVIVAL, /* needs: death cause (string) */
+#if TAG_MAJOR_VERSION == 31
+ NOTE_LOSE_SKILL, /* needs: skill id, level */
+#endif
NOTE_NUM_TYPES
};