mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-23 06:35:33 -07:00
Fix the Yes/No spacing on a couple of messages.
This commit is contained in:
parent
2da36ed29c
commit
e585b76d51
2 changed files with 6 additions and 6 deletions
|
@ -7,9 +7,9 @@ extern "C" {
|
||||||
// RANDOTODO: Port the rest of the behavior for this enhancement here.
|
// RANDOTODO: Port the rest of the behavior for this enhancement here.
|
||||||
|
|
||||||
void BuildNightGuardMessage(uint16_t* textId, bool* loadFromMessageTable) {
|
void BuildNightGuardMessage(uint16_t* textId, bool* loadFromMessageTable) {
|
||||||
CustomMessage msg = CustomMessage("You look bored. Wanna go out for a&walk?\x1B&%gYes&No%w",
|
CustomMessage msg = CustomMessage("You look bored. Wanna go out for a walk?\x1B%gYes&No%w",
|
||||||
"Du siehst gelangweilt aus.&Willst Du einen Spaziergang machen?\x1B&%gJa&Nein%w",
|
"Du siehst gelangweilt aus. Willst Du einen Spaziergang machen?\x1B%gJa&Nein%w",
|
||||||
"Tu as l'air de t'ennuyer. Tu veux&aller faire un tour?\x1B&%gOui&Non%w");
|
"Tu as l'air de t'ennuyer. Tu veux aller faire un tour?\x1B%gOui&Non%w");
|
||||||
msg.AutoFormat();
|
msg.AutoFormat();
|
||||||
msg.LoadIntoFont();
|
msg.LoadIntoFont();
|
||||||
*loadFromMessageTable = false;
|
*loadFromMessageTable = false;
|
||||||
|
|
|
@ -10,10 +10,10 @@ void BuildQuitFishingMessage(uint16_t* textId, bool* loadFromMessageTable) {
|
||||||
// TODO: See about loading the vanilla message and manipulating that instead of
|
// TODO: See about loading the vanilla message and manipulating that instead of
|
||||||
// a brand new one. Might not be worth it.
|
// a brand new one. Might not be worth it.
|
||||||
CustomMessage msg = CustomMessage(
|
CustomMessage msg = CustomMessage(
|
||||||
"Hey! Hey!&You can't take the rod out of here!&I'm serious!^Do you want to quit?&\x1B&%gYes&No%w",
|
"Hey! Hey!&You can't take the rod out of here!&I'm serious!^Do you want to quit?\x1B%gYes&No%w",
|
||||||
"Hey! Hey!&Du kannst die Angel doch nicht&einfach mitnehmen!&Ganz im Ernst!^Möchtest Du "
|
"Hey! Hey!&Du kannst die Angel doch nicht&einfach mitnehmen!&Ganz im Ernst!^Möchtest Du "
|
||||||
"aufhören?&\x1B&%gJa&Nein%w",
|
"aufhören?\x1B%gJa&Nein%w",
|
||||||
"Holà! Holà!&Les cannes ne sortent pas d'ici!&Je suis sérieux!^Voulez-vous arrêter?&\x1B&%gOui&Non%w");
|
"Holà! Holà!&Les cannes ne sortent pas d'ici!&Je suis sérieux!^Voulez-vous arrêter?\x1B%gOui&Non%w");
|
||||||
msg.AutoFormat();
|
msg.AutoFormat();
|
||||||
msg.LoadIntoFont();
|
msg.LoadIntoFont();
|
||||||
*loadFromMessageTable = false;
|
*loadFromMessageTable = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue