Skip to content

Commit 8b59cbe

Browse files
committed
Added --noWaitMsg to --hsq query commands
1 parent 0697b81 commit 8b59cbe

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CommandMaster/5.0.1/CommandMaster.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,15 @@ API_Meta.CommandMaster={offset:Number.MAX_SAFE_INTEGER,lineCount:-1};
146146
* "random(item-class):qty". Added --restock command to support trader inventory
147147
* restocking. Fixed evalAttr issue with unbracketed calculations.
148148
* v5.0.1 23/09/2025 Fixed non-responsive [Add all Owned Weapons] button on Add Proficiencies dialog.
149+
* Added --noWaitMsg command to suppress spurious Please Wait messages.
149150
*/
150151

151152
var CommandMaster = (function() { // eslint-disable-line no-unused-vars
152153
'use strict';
153154
var version = '5.0.1',
154155
author = 'RED',
155156
pending = null;
156-
const lastUpdate = 1758697790;
157+
const lastUpdate = 1758783460;
157158

158159
/*
159160
* Define redirections for functions moved to the RPGMaster library
@@ -1301,7 +1302,7 @@ var CommandMaster = (function() { // eslint-disable-line no-unused-vars
13011302
**/
13021303

13031304
var issueHandshakeQuery = function( api, cmd ) {
1304-
var handshake = '!'+api+' --hsq cmd'+((cmd && cmd.length) ? ('|'+cmd) : '');
1305+
var handshake = '!'+api+' --noWaitMsg --hsq cmd'+((cmd && cmd.length) ? ('|'+cmd) : '');
13051306
sendAPI(handshake);
13061307
if (_.isUndefined(apiCommands[api])) apiCommands[api] = {};
13071308
apiCommands[api].exists = false;

CommandMaster/CommandMaster.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,15 @@ API_Meta.CommandMaster={offset:Number.MAX_SAFE_INTEGER,lineCount:-1};
146146
* "random(item-class):qty". Added --restock command to support trader inventory
147147
* restocking. Fixed evalAttr issue with unbracketed calculations.
148148
* v5.0.1 23/09/2025 Fixed non-responsive [Add all Owned Weapons] button on Add Proficiencies dialog.
149+
* Added --noWaitMsg command to suppress spurious Please Wait messages.
149150
*/
150151

151152
var CommandMaster = (function() { // eslint-disable-line no-unused-vars
152153
'use strict';
153154
var version = '5.0.1',
154155
author = 'RED',
155156
pending = null;
156-
const lastUpdate = 1758697790;
157+
const lastUpdate = 1758783460;
157158

158159
/*
159160
* Define redirections for functions moved to the RPGMaster library
@@ -1301,7 +1302,7 @@ var CommandMaster = (function() { // eslint-disable-line no-unused-vars
13011302
**/
13021303

13031304
var issueHandshakeQuery = function( api, cmd ) {
1304-
var handshake = '!'+api+' --hsq cmd'+((cmd && cmd.length) ? ('|'+cmd) : '');
1305+
var handshake = '!'+api+' --noWaitMsg --hsq cmd'+((cmd && cmd.length) ? ('|'+cmd) : '');
13051306
sendAPI(handshake);
13061307
if (_.isUndefined(apiCommands[api])) apiCommands[api] = {};
13071308
apiCommands[api].exists = false;

0 commit comments

Comments
 (0)