fix: winter race orbs (#1810)

Tested that script is loaded
This commit is contained in:
David Markowitz
2025-06-08 12:14:35 -07:00
committed by GitHub
parent b509fd4f10
commit 37e14979a4
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 {}