Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
Update SendInGamePatch.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
miaoice committed Jul 7, 2024
1 parent b22a554 commit e5e9e46
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/Other_code/SendInGamePatch.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@

using Discord;

namespace ChatTool;

public class SendInGamePatch
public class SIGP
{
public static void SendInGame(string text)
public static void SIGD(string text)
{
if (DestroyableSingleton<HudManager>._instance)
HudManager.Instance.Notifier.AddDisconnectMessage(text);
}
public static void SIGM(string text)
{
if (DestroyableSingleton<HudManager>._instance)
HudManager.Instance.Notifier.AddDisconnectMessage(text);
Expand Down

0 comments on commit e5e9e46

Please sign in to comment.