diff --git a/OTAPI.Server.Launcher/csharp/plugins/modules/otapi/example/Example.cs b/OTAPI.Server.Launcher/csharp/plugins/modules/otapi/example/Example.cs index de18cb35e..3ca217431 100644 --- a/OTAPI.Server.Launcher/csharp/plugins/modules/otapi/example/Example.cs +++ b/OTAPI.Server.Launcher/csharp/plugins/modules/otapi/example/Example.cs @@ -28,13 +28,6 @@ public static class Hooks public static void OnRunning() { Console.WriteLine("[LauncherScript] Hello World! from a script"); - On.Terraria.Program.LaunchGame += Program_LaunchGame; - } - - private static void Program_LaunchGame(On.Terraria.Program.orig_LaunchGame orig, string[] args, bool monoArgs) - { - Console.WriteLine("[LauncherScript] LaunchGame was called!"); - orig(args, monoArgs); } } }