mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-23 14:45:31 -07:00
Fix skulltula hint messages
This commit is contained in:
parent
f657741336
commit
f5c4948b4e
2 changed files with 2 additions and 2 deletions
|
@ -120,7 +120,7 @@ void BuildSkulltulaPeopleMessage(uint16_t* textId, bool* loadFromMessageTable) {
|
||||||
} else {
|
} else {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
msg.AutoFormat();
|
// msg.AutoFormat();
|
||||||
msg.LoadIntoFont();
|
msg.LoadIntoFont();
|
||||||
*loadFromMessageTable = false;
|
*loadFromMessageTable = false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -516,7 +516,7 @@ const HintText Hint::GetItemHintText(uint8_t slot, bool mysterious) const {
|
||||||
} else if (!ctx->GetOption(RSK_HINT_CLARITY).Is(RO_HINT_CLARITY_AMBIGUOUS) && targetRG == RG_ICE_TRAP) { //RANDOTODO store in item hint instead of item
|
} else if (!ctx->GetOption(RSK_HINT_CLARITY).Is(RO_HINT_CLARITY_AMBIGUOUS) && targetRG == RG_ICE_TRAP) { //RANDOTODO store in item hint instead of item
|
||||||
return HintText(CustomMessage({ctx->overrides[hintedCheck].GetTrickName()}));
|
return HintText(CustomMessage({ctx->overrides[hintedCheck].GetTrickName()}));
|
||||||
} else {
|
} else {
|
||||||
return ctx->GetItemLocation(hintedCheck)->GetPlacedItem().GetHint();
|
return HintText(ctx->GetItemLocation(hintedCheck)->GetPlacedItem().GetName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue