summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/throw.h
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-03-31 11:43:46 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-03-31 11:44:33 -0500
commitf6a7ff037863031449c25ab7fafec20a375c094d (patch)
treeb7c056344c9064f1c12d5f17887459a35319ddac /crawl-ref/source/throw.h
parent8b6cf31d874837fc4bfee9b4d197313ee75b16c7 (diff)
downloadcrawl-ref-f6a7ff037863031449c25ab7fafec20a375c094d.tar.gz
crawl-ref-f6a7ff037863031449c25ab7fafec20a375c094d.zip
Reorder firing type enums a bit; they're not saved in games anyway.
Diffstat (limited to 'crawl-ref/source/throw.h')
-rw-r--r--crawl-ref/source/throw.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/throw.h b/crawl-ref/source/throw.h
index dbbe03d09a..9d89f4b7a0 100644
--- a/crawl-ref/source/throw.h
+++ b/crawl-ref/source/throw.h
@@ -24,8 +24,8 @@ enum fire_type
FIRE_ROCK = 0x0100,
FIRE_NET = 0x0200,
FIRE_RETURNING = 0x0400,
- FIRE_INSCRIBED = 0x0800, // Only used for _get_fire_order
- FIRE_PIE = 0x1000,
+ FIRE_PIE = 0x0800,
+ FIRE_INSCRIBED = 0x1000, // Only used for _get_fire_order
};
struct bolt;