From 33355ee691758769d7d115a5bb9e2bad567a9497 Mon Sep 17 00:00:00 2001 From: xLuxy <67131061+xLuxy@users.noreply.github.com> Date: Thu, 28 Dec 2023 15:30:57 +0100 Subject: [PATCH] chore(client): Move comment --- client/src/bindings/ClientBindingsMain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/bindings/ClientBindingsMain.cpp b/client/src/bindings/ClientBindingsMain.cpp index 4294e8ac..d3a8f475 100644 --- a/client/src/bindings/ClientBindingsMain.cpp +++ b/client/src/bindings/ClientBindingsMain.cpp @@ -1524,10 +1524,10 @@ extern V8Module altModule("alt", V8Helpers::RegisterFunc(exports, "getPoolCount", &GetPoolCount); V8Helpers::RegisterFunc(exports, "getPoolEntities", &GetPoolEntities); + // Voice related functions V8Helpers::RegisterFunc(exports, "getVoicePlayers", &GetVoicePlayers); V8Helpers::RegisterFunc(exports, "removeVoicePlayer", &RemoveVoicePlayer); - // Voice related functions V8Helpers::RegisterFunc(exports, "getVoiceSpatialVolume", &GetVoiceSpatialVolume); V8Helpers::RegisterFunc(exports, "setVoiceSpatialVolume", &SetVoiceSpatialVolume);