Skip to content

Commit

Permalink
修正bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Oct 8, 2024
1 parent 94aa877 commit 9f20883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class Helper {
if (config.multiMode) {
luaArgs['lua_multi_mode'] = 'true';
luaArgs['lua_multi_wait_debugger'] = 'true';
luaArgs['lua_multi_debug_players'] = config.multiPlayers.sort().join('#');
luaArgs['lua_multi_debug_players'] = config.debugPlayers.sort().join('#');
if (config.multiPlayers.length === 0) {
vscode.window.showErrorMessage('请至少选择一个玩家才能启动游戏!');
return;
Expand Down

0 comments on commit 9f20883

Please sign in to comment.