maraiah: add dummy flags for infinity's broken data

master
an 2019-07-01 01:19:23 -04:00
parent 5edec0bc88
commit 54ab1f9153
2 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,7 @@ bitflags! {
#[cfg_attr(feature = "serde_obj", derive(serde::Serialize))]
pub struct SoundRandFlags: u16 {
const NO_DIRECTION = 1;
const _2 = 2;
}
}

View File

@ -37,6 +37,10 @@ bitflags! {
#[cfg_attr(feature = "serde_obj", derive(serde::Serialize))]
pub struct ObjectFreqFlags: u16 {
const RANDOM_LOCATION = 1;
const _3 = 1 << 3;
const _4 = 1 << 4;
const _5 = 1 << 5;
const _6 = 1 << 6;
}
}