editor hint for titled message

This commit is contained in:
2025-08-29 16:10:59 -05:00
parent fcfe04a299
commit de0eeac8f9

View File

@@ -586,6 +586,9 @@ std::string cSpecial::editor_hint(cUniverse& univ) const {
case eSpecType::ONCE_DIALOG: case eSpecType::ONCE_DIALOG:
hint += fmt::format(": '{}'", first_of_six_str(m1)); hint += fmt::format(": '{}'", first_of_six_str(m1));
break; break;
case eSpecType::TITLED_MSG:
hint += fmt::format(": '{}'", first_of_many_str(m3, m1, m2));
break;
case eSpecType::INC_SDF: case eSpecType::INC_SDF:
preposition = ex1b == 1 ? "decrease by" : "increase by"; preposition = ex1b == 1 ? "decrease by" : "increase by";