summaryrefslogtreecommitdiff
path: root/components/esm3/loadalch.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'components/esm3/loadalch.hpp')
-rw-r--r--components/esm3/loadalch.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/components/esm3/loadalch.hpp b/components/esm3/loadalch.hpp
index ddecd7e3c7..814d21937b 100644
--- a/components/esm3/loadalch.hpp
+++ b/components/esm3/loadalch.hpp
@@ -25,11 +25,16 @@ namespace ESM
/// Return a string descriptor for this record type. Currently used for debugging / error logs only.
static std::string_view getRecordType() { return "Potion"; }
+ enum Flags
+ {
+ Autocalc = 1 // Determines value
+ };
+
struct ALDTstruct
{
float mWeight;
int32_t mValue;
- int32_t mAutoCalc;
+ int32_t mFlags;
};
ALDTstruct mData;