We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc37a31 commit 68acb78Copy full SHA for 68acb78
docfx/docs/packets.md
@@ -117,9 +117,16 @@ A @"Archipelago.MultiClient.Net.Packets.SayPacket?text=SayPacket" is used to com
117
```csharp
118
public static void SendReleaseCommand()
119
{
120
- SendSayPacket("!release");
+ Session.Say("!release");
121
}
122
+```
123
124
+or we can do it manually:
125
+```csharp
126
+public static void SendReleaseCommand()
127
+{
128
+ SendSayPacket("!release");
129
+}
130
public static void SendSayPacket(string text)
131
132
Session.Socket.SendPacket(new SayPacket { Text = text });
0 commit comments