Skip to content

Commit

Permalink
update some wording
Browse files Browse the repository at this point in the history
  • Loading branch information
burturt committed Jun 2, 2024
1 parent 7c0fa9c commit 8bdcd20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions player/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -804,13 +804,13 @@ async function main() {
if (correct) {
await createTitleScreen(
"Your request will be processed soon.",
`Our staff is pleased to receive your request. At first glance, prospects are promising. Your SEASnet status has been updated accordingly to priority ${totalScore}.`,
`Our staff is pleased to receive your request. At first glance, prospects are promising. Your SEASnet support ticket has been updated accordingly to priority ${totalScore}.`,
["Thanks!", "Just give me the next form already."],
);
} else {
await createTitleScreen(
"There was an error in your request.",
`There was an error processing your request. Please try again. Your priority is still ${totalScore}`,
`There was an error processing your request. Please try again. Your SEASnet support ticket priority is still ${totalScore}`,
[
"No way, I swear I filled everything out correctly!",
"Surely you must've lost my submission somewhere?",
Expand All @@ -825,13 +825,13 @@ async function main() {
if (totalScore > 200) {
await createTitleScreen(
"Thank you for your continued loyalty.",
`We've processed your forms and pinpointed the location of Boelter 2444.\n\nFinal priority level: ${totalScore}`,
`We've processed your forms and pinpointed the location of Boelter 2444.\n\nFinal ticket priority level: ${totalScore}`,
["Pass the CS 33 final!"],
);
} else {
await createTitleScreen(
"We apologize.",
`Sincere apologies. We could not find the location of Boelter 2444. Please try again later.\n\nFinal priority level: ${totalScore}`,
`Sincere apologies. We could not find the location of Boelter 2444. Please try again later.\n\nFinal ticket priority level: ${totalScore}`,
["Fail the CS 33 final"],
);
}
Expand Down

0 comments on commit 8bdcd20

Please sign in to comment.