fix: winter race orbs

Tested that script is loaded
This commit is contained in:
David Markowitz
2025-06-08 12:02:37 -07:00
parent 820c0f0083
commit 81d8e1f75d
6 changed files with 86 additions and 1 deletions

View File

@@ -83,6 +83,12 @@ public:
this->value = value;
}
//! Initializer
LDFData(const std::string& key, const T& value) {
this->key = GeneralUtils::ASCIIToUTF16(key);
this->value = value;
}
//! Destructor
~LDFData(void) override {}