Skip to content

Commit

Permalink
does a man ever think
Browse files Browse the repository at this point in the history
  • Loading branch information
LoafOrc committed Dec 29, 2023
1 parent a16c15c commit d12fc51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SpeechHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void RecognizeCompletedHandler(object sender, RecognizeCompletedEventArgs e) {
Plugin.logger.LogWarning("babble timeout");
return;
}
if (e.Result != null && Plugin.LOG_SPEECH.Value) {
if (e.Result != null) {
Voice.VoiceRecognition(e);
} else if (Plugin.LOG_SPEECH.Value) {
Plugin.logger.LogInfo("No result.");
Expand Down
4 changes: 2 additions & 2 deletions Thunderstore/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "VoiceRecognitionAPI",
"version_number": "1.0.0",
"version_number": "1.0.1",
"website_url": "https://github.com/LoafOrc/VoiceRecognitionAPI/",
"description": "Loads Windows Speech recognition into Lethal Company and provides a dev-friendly way of using it.",
"dependencies": []
"dependencies": ["BepInEx-BepInExPack-5.4.2100"]
}

0 comments on commit d12fc51

Please sign in to comment.