We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 315d882 commit ff5452fCopy full SHA for ff5452f
1 file changed
src/validators/ids.rs
@@ -97,6 +97,13 @@ impl Handler<'_> for IdValidator {
97
TES3Object::GameSetting(_) => {
98
println!("Found dirty {} {}", record.type_name(), record.editor_id());
99
}
100
+ TES3Object::GlobalVariable(_) => {
101
+ if context.mode != Mode::TD || !record.editor_id().eq_ignore_ascii_case("MWSE_BUILD")
102
+ {
103
+ check_id(context, record);
104
+ self.check_known(record);
105
+ }
106
107
TES3Object::DialogueInfo(_) => {}
108
TES3Object::PathGrid(_) => {}
109
TES3Object::Region(_) => {
0 commit comments