Update LauncherFormShared.cs
This commit is contained in:
parent
8446030f47
commit
044db6c3a9
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue