Skip to content

Commit

Permalink
turns out my logic is bad
Browse files Browse the repository at this point in the history
  • Loading branch information
nyakowint committed Apr 5, 2024
1 parent 16328f7 commit e430ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KeyboardOSC/ChatMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ private static void SendMessage(bool liveSend = false)
if (liveSend)
{
_eventsTimer.Stop();
Tools.SendOsc("/chatbox/input", _currentText.ReplaceShortcodes(), true, _isFirstMsg || !_isSilentMsg);
Tools.SendOsc("/chatbox/input", _currentText.ReplaceShortcodes(), true, !_isSilentMsg);
SendTyping(false);
_isFirstMsg = false;
}
Expand Down

0 comments on commit e430ba0

Please sign in to comment.