diff --git a/Libraries/Core/Callbacks/DialogueCallbacks.cs b/Libraries/Core/Callbacks/DialogueCallbacks.cs index 7c36af62..3f24ab6d 100644 --- a/Libraries/Core/Callbacks/DialogueCallbacks.cs +++ b/Libraries/Core/Callbacks/DialogueCallbacks.cs @@ -308,17 +308,17 @@ public class DialogueCallbacks( public string ChangeMailGroupOwner(string url, ChangeGroupMailOwnerRequest info, string sessionID) { - throw new NotImplementedException(); // Not implemented in Node + return "Not Implemented!"; // Not implemented in Node } public string AddUserToMail(string url, AddUserGroupMailRequest info, string sessionID) { - throw new NotImplementedException(); // Not implemented in Node + return "Not Implemented!"; // Not implemented in Node } public string RemoveUserFromMail(string url, RemoveUserGroupMailRequest info, string sessionID) { - throw new NotImplementedException(); // Not implemented in Node + return "Not Implemented!"; // Not implemented in Node } public bool OnUpdate(long timeSinceLastRun) diff --git a/Libraries/Core/Callbacks/LauncherV2Callbacks.cs b/Libraries/Core/Callbacks/LauncherV2Callbacks.cs index b4adfc5c..4a2f3b01 100644 --- a/Libraries/Core/Callbacks/LauncherV2Callbacks.cs +++ b/Libraries/Core/Callbacks/LauncherV2Callbacks.cs @@ -99,14 +99,4 @@ public class LauncherV2Callbacks( } ); } - - public string Profile() - { - throw new NotImplementedException(); - } - - public string ProfileMods() - { - throw new NotImplementedException(); - } }