Skip to content

Commit

Permalink
Merge pull request #30 from ChanyaVRC/patch/chatbox/address-readonly
Browse files Browse the repository at this point in the history
Fixed the issue addresses for chatbox are changeable.
  • Loading branch information
ChanyaVRC committed Dec 4, 2022
2 parents 645df40 + f1d7eea commit f83281f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/VRCOscLib/VRCOscLib/Chatbox/OscChatbox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
namespace BuildSoft.VRChat.Osc.Chatbox;
public static class OscChatbox
{
public static string InputAddress = "/chatbox/input";
public static string TypingAddress = "/chatbox/typing";
public static readonly string InputAddress = "/chatbox/input";
public static readonly string TypingAddress = "/chatbox/typing";

public static void SendMessage(string message, bool direct, bool complete = false)
{
OscClient client = OscUtility.Client;
Expand Down

0 comments on commit f83281f

Please sign in to comment.