From bcd5fef4fe998eca0b31cf869be68a5fcbad606c Mon Sep 17 00:00:00 2001 From: Bitl Date: Sat, 11 Jul 2020 14:29:14 -0700 Subject: [PATCH] fixed wrong terminology. --- Novetus/NovetusCMD/NovetusCMD.cs | 5 +++-- .../Forms/LauncherForm/Compact/LauncherFormCompact.cs | 2 +- .../Forms/LauncherForm/Extended/LauncherFormExtended.cs | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Novetus/NovetusCMD/NovetusCMD.cs b/Novetus/NovetusCMD/NovetusCMD.cs index 47e54e0..84283dc 100644 --- a/Novetus/NovetusCMD/NovetusCMD.cs +++ b/Novetus/NovetusCMD/NovetusCMD.cs @@ -3,6 +3,7 @@ using System; using Mono.Nat; using System.Diagnostics; using System.IO; +using System.Windows.Forms; #endregion namespace NovetusCMD @@ -22,7 +23,7 @@ namespace NovetusCMD } catch (Exception ex) { - GlobalFuncs.ConsolePrint("UPnP: Unable to initialize NetFuncs. Reason - " + ex.Message, 2); + GlobalFuncs.ConsolePrint("UPnP: Unable to initialize UPnP. Reason - " + ex.Message, 2); } } } @@ -174,7 +175,7 @@ namespace NovetusCMD GlobalFuncs.ConsolePrint("---------", 1); GlobalFuncs.ConsolePrint("Custom server options", 3); GlobalFuncs.ConsolePrint("-overrideconfig must be added in order for the below commands to function.", 5); - GlobalFuncs.ConsolePrint("-upnp | Turns on NetFuncs.", 4); + GlobalFuncs.ConsolePrint("-upnp | Turns on UPnP.", 4); GlobalFuncs.ConsolePrint("-map | Sets the map.", 4); GlobalFuncs.ConsolePrint("-client | Sets the client.", 4); GlobalFuncs.ConsolePrint("-port | Sets the server port.", 4); diff --git a/Novetus/NovetusLauncher/Forms/LauncherForm/Compact/LauncherFormCompact.cs b/Novetus/NovetusLauncher/Forms/LauncherForm/Compact/LauncherFormCompact.cs index 120ff85..d130ea0 100644 --- a/Novetus/NovetusLauncher/Forms/LauncherForm/Compact/LauncherFormCompact.cs +++ b/Novetus/NovetusLauncher/Forms/LauncherForm/Compact/LauncherFormCompact.cs @@ -51,7 +51,7 @@ namespace NovetusLauncher } catch (Exception ex) { - GlobalFuncs.ConsolePrint("UPnP: Unable to initialize NetFuncs. Reason - " + ex.Message, 2, richTextBox1); + GlobalFuncs.ConsolePrint("UPnP: Unable to initialize UPnP. Reason - " + ex.Message, 2, richTextBox1); } } } diff --git a/Novetus/NovetusLauncher/Forms/LauncherForm/Extended/LauncherFormExtended.cs b/Novetus/NovetusLauncher/Forms/LauncherForm/Extended/LauncherFormExtended.cs index d0625c7..e9a0991 100644 --- a/Novetus/NovetusLauncher/Forms/LauncherForm/Extended/LauncherFormExtended.cs +++ b/Novetus/NovetusLauncher/Forms/LauncherForm/Extended/LauncherFormExtended.cs @@ -54,7 +54,7 @@ namespace NovetusLauncher } catch (Exception ex) { - GlobalFuncs.ConsolePrint("UPnP: Unable to initialize NetFuncs. Reason - " + ex.Message, 2, richTextBox1); + GlobalFuncs.ConsolePrint("UPnP: Unable to initialize UPnP. Reason - " + ex.Message, 2, richTextBox1); } } }