From aa2c2a24af0cad1bfdb7ec467bbf2b138efabd42 Mon Sep 17 00:00:00 2001 From: pblivingston <71585805+pblivingston@users.noreply.github.com> Date: Thu, 27 Nov 2025 13:06:18 -0500 Subject: [PATCH] Update Voicemeeter.psm1 --- lib/Voicemeeter.psm1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Voicemeeter.psm1 b/lib/Voicemeeter.psm1 index b786667..271a8e5 100644 --- a/lib/Voicemeeter.psm1 +++ b/lib/Voicemeeter.psm1 @@ -14,6 +14,7 @@ . $PSScriptRoot\recorder.ps1 . $PSScriptRoot\patch.ps1 . $PSScriptRoot\option.ps1 +. $PSScriptRoot\fx.ps1 . $PSScriptRoot\profiles.ps1 class Remote { @@ -125,6 +126,7 @@ class RemotePotato : Remote { [System.Collections.ArrayList]$button [PSCustomObject]$vban [Object]$command + [Object]$fx [Object]$patch [Object]$option [Object]$recorder @@ -135,6 +137,7 @@ class RemotePotato : Remote { $this.button = Make_Buttons $this.vban = Make_Vban($this) $this.command = Make_Command($this) + $this.fx = Make_Fx($this) $this.patch = Make_Patch($this) $this.option = Make_Option($this) $this.recorder = Make_Recorder($this)