rbxstudio-mcp 1.14.2 → 1.14.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -4119,8 +4119,8 @@ handlers.playSolo = function(requestData)
|
|
|
4119
4119
|
-- Use the new StudioTestService API for proper Play Solo mode
|
|
4120
4120
|
-- Run in background task so we don't block the HTTP response
|
|
4121
4121
|
activePlayTestTask = task.spawn(function()
|
|
4122
|
-
-- ExecutePlayModeAsync
|
|
4123
|
-
local testResult = studioTestService:ExecutePlayModeAsync(
|
|
4122
|
+
-- ExecutePlayModeAsync(args: Variant?) - per official docs, pass a string identifier
|
|
4123
|
+
local testResult = studioTestService:ExecutePlayModeAsync("MCP_PlayTest")
|
|
4124
4124
|
activePlayTestTask = nil
|
|
4125
4125
|
end)
|
|
4126
4126
|
|