Skip to content

Commit

Permalink
Completely disable PiShock module's speech recognition for now
Browse files Browse the repository at this point in the history
  • Loading branch information
VolcanicArts committed Sep 15, 2024
1 parent 491fb71 commit 74ddf6d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions VRCOSC.Modules/PiShock/PiShockModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ public void OnPartialSpeechResult(string text)

public void OnFinalSpeechResult(string text)
{
return;

if (string.IsNullOrEmpty(text)) return;

foreach (var phrase in GetSettingValue<List<Phrase>>(PiShockSetting.Phrases)!)
Expand Down

0 comments on commit 74ddf6d

Please sign in to comment.