summaryrefslogtreecommitdiff
path: root/src/strife/doomdef.h
diff options
context:
space:
mode:
authorJames Haley2013-02-25 01:38:41 +0000
committerJames Haley2013-02-25 01:38:41 +0000
commit6a2255c70b882391931a7ef7ad9ada47a88b7c77 (patch)
treeed9956bb30f49043f04d05d9f50de1c712502a95 /src/strife/doomdef.h
parent1011b3bd314e515e6357df8b5b77d33a2528ae34 (diff)
downloadchocolate-doom-6a2255c70b882391931a7ef7ad9ada47a88b7c77.tar.gz
chocolate-doom-6a2255c70b882391931a7ef7ad9ada47a88b7c77.tar.bz2
chocolate-doom-6a2255c70b882391931a7ef7ad9ada47a88b7c77.zip
Portability tweak when adding quest flags from collected items, due to
the Broken Power Coupling's anomalous speed value of 512*FRACUNIT (verified against binary). Added note about this in the quest flags enumeration as well; bit 31 (quest #32) is accidentally set by this item, but is never checked for anywhere. Subversion-branch: /branches/v2-branch Subversion-revision: 2560
Diffstat (limited to 'src/strife/doomdef.h')
-rw-r--r--src/strife/doomdef.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strife/doomdef.h b/src/strife/doomdef.h
index 3c289808..d48b41ee 100644
--- a/src/strife/doomdef.h
+++ b/src/strife/doomdef.h
@@ -253,7 +253,7 @@ enum
QF_QUEST5 = (1 << tk_quest5), // Accepted Gov. Mourel's "bloody" chore
QF_QUEST6 = (1 << tk_quest6), // Destroyed the Power Coupling
QF_QUEST7 = (1 << tk_quest7), // Killed Blue Acolytes ("Scanning Team")
- QF_QUEST8 = (1 << tk_quest8),
+ QF_QUEST8 = (1 << tk_quest8), // Unused; formerly, picked up Broken Coupling
QF_QUEST9 = (1 << tk_quest9), // Obtained Derwin's ear
QF_QUEST10 = (1 << tk_quest10), // Obtained Prison Pass
QF_QUEST11 = (1 << tk_quest11), // Obtained Prison Key
@@ -277,7 +277,7 @@ enum
QF_QUEST29 = (1 << tk_quest29), // Destroyed the Mines Transmitter
QF_QUEST30 = (1 << tk_quest30),
QF_QUEST31 = (1 << tk_quest31),
- QF_QUEST32 = (1 << tk_quest32), // Note: seems to be unused
+ QF_QUEST32 = (1 << tk_quest32), // Unused; BUG: Broken Coupling accidentally sets it.
QF_ALLQUESTS = (QF_QUEST31 + (QF_QUEST31 - 1)) // does not include bit 32!
};