diff --git a/soh/soh/Enhancements/randomizer/3drando/hints.hpp b/soh/soh/Enhancements/randomizer/3drando/hints.hpp index 91955b833..74c3b784a 100644 --- a/soh/soh/Enhancements/randomizer/3drando/hints.hpp +++ b/soh/soh/Enhancements/randomizer/3drando/hints.hpp @@ -34,7 +34,7 @@ class HintText { public: HintText() = default; explicit HintText(CustomMessage clearText_, std::vector ambiguousText_ = {}, - std::vector obscureText_ = {}, CustomMessage name_ = {""}); + std::vector obscureText_ = {}, CustomMessage name_ = { "" }); const CustomMessage& GetName() const; const CustomMessage& GetClear() const; const CustomMessage& GetObscure() const; @@ -49,7 +49,8 @@ class HintText { bool operator!=(const HintText& right) const; private: - CustomMessage clearText; //RANDOTODO proper system to define use of articles instead of having the name and name with articles repeated + CustomMessage clearText; // RANDOTODO proper system to define use of articles instead of having the name and name + // with articles repeated std::vector ambiguousText = {}; std::vector obscureText = {}; CustomMessage name;