UI: use newline to separate sentences in popup message (#188)

This commit is contained in:
quacksouls 2022-11-07 09:27:40 +11:00 committed by GitHub
parent 9e869bc876
commit 83730d89fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -85,7 +85,7 @@ export class CreateProgramWork extends Work {
`You've finished creating ${programName}!`, `You've finished creating ${programName}!`,
"The new program can be found on your home computer.", "The new program can be found on your home computer.",
]; ];
dialogBoxCreate(lines.join("<br>")); dialogBoxCreate(lines.join("\n"));
} }
if (!Player.getHomeComputer().programs.includes(programName)) { if (!Player.getHomeComputer().programs.includes(programName)) {