summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-07-06 00:18:02 -0400
committerNeil Moore <neil@s-z.org>2014-07-06 00:18:03 -0400
commitf1063cb0753b80e1baf3c9c9f11546bf20da39de (patch)
treeba5c91e64b6c0e1a9fef7207ad5cbdaadb6f1c43 /crawl-ref/source/enum.h
parent727dbd68da90d3249656771f2fd1f44e995aa068 (diff)
downloadcrawl-ref-f1063cb0753b80e1baf3c9c9f11546bf20da39de.tar.gz
crawl-ref-f1063cb0753b80e1baf3c9c9f11546bf20da39de.zip
Remove ISFLAG_DROPPED_BY_ALLY.
Since the removal of ally pickup modes, the flag has still been tracked but never actually read.
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 64f1a4fef6..8d533a2197 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2079,7 +2079,9 @@ enum item_status_flag_type // per item flags: ie. ident status, cursed status
ISFLAG_SEEN = 0x20000000, // has it been seen
ISFLAG_SUMMONED = 0x40000000, // Item generated on a summon
- ISFLAG_DROPPED_BY_ALLY = 0x80000000, // Item was dropped by an ally
+#if TAG_MAJOR_VERSION == 34
+ ISFLAG_UNUSED4 = 0x80000000, // was ISFLAG_DROPPED_BY_ALLY
+#endif
};
enum item_type_id_state_type