From 044db6c3a95e6960c2b20910c6a5ebb6c54f6317 Mon Sep 17 00:00:00 2001 From: Bitl Date: Thu, 11 Nov 2021 10:36:44 -0700 Subject: [PATCH] Update LauncherFormShared.cs --- .../Forms/LauncherForm/LauncherFormShared.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Novetus/NovetusLauncher/Forms/LauncherForm/LauncherFormShared.cs b/Novetus/NovetusLauncher/Forms/LauncherForm/LauncherFormShared.cs index 51ea09a..1c16e21 100644 --- a/Novetus/NovetusLauncher/Forms/LauncherForm/LauncherFormShared.cs +++ b/Novetus/NovetusLauncher/Forms/LauncherForm/LauncherFormShared.cs @@ -448,7 +448,8 @@ namespace NovetusLauncher { if (gameType == ScriptType.Studio) { - DialogResult result = MessageBox.Show("If you want to test out your place, you will have to save your place in Novetus's map folder, then launch your place in Play Solo.\n\nPress Yes to launch Studio with a map, or No to launch Studio without a map.", "Novetus - Launch Roblox Studio", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Information); + DialogResult result = MessageBox.Show("If you want to test out your place, you will have to save your place in Novetus's map folder, then launch your place in Play Solo." + + "\n\nPress Yes to launch Studio with a map, or No to launch Studio without a map.", "Novetus - Launch Roblox Studio", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Information); bool nomapLegacy = false; switch (result) @@ -466,7 +467,9 @@ namespace NovetusLauncher if (FormStyle == Settings.Style.Stylish && gameType == ScriptType.Server) { - DialogResult result = MessageBox.Show("You have the option to launch your server with or without graphics for better preformance.\nPlease note that enabling this option may cause some elements in later clients may be disabled, such as Dialog boxes. This feature may also make your server unstable.\n\nPress Yes to launch a server with graphics, or No to launch a Server in No3D Mode.", "Novetus - Launch Server", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Information); + DialogResult result = MessageBox.Show("You have the option to launch your server with or without graphics for better performance.\n" + + "Please note that enabling this option may cause some elements in later clients may be disabled, such as Dialog boxes. This feature may also make your server unstable.\n\n" + + "Press Yes to launch a server with graphics, or No to launch a Server in No3D Mode.", "Novetus - Launch Server", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Information); bool no3dLegacy = false; switch (result)