rbxstudio-mcp 1.14.1 → 1.14.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rbxstudio-mcp",
3
- "version": "1.14.1",
3
+ "version": "1.14.2",
4
4
  "description": "MCP Server for Roblox Studio Integration - Access Studio data, scripts, and objects through AI tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -4119,7 +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
- local testResult = studioTestService:ExecutePlayModeAsync(nil)
4122
+ -- ExecutePlayModeAsync requires a non-nil argument (can be empty table)
4123
+ local testResult = studioTestService:ExecutePlayModeAsync({})
4123
4124
  activePlayTestTask = nil
4124
4125
  end)
4125
4126