@maka/maka-cli 5.99.0 → 5.102.0
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/bundle/typescript/package.json +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/game.js +18 -0
- package/bundle/typescript/src/commands/game/sideQuest/game.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/player.d.ts +9 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/player.js +27 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/player.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/utilities/condition-report.d.ts +6 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/condition-report.js +60 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/condition-report.js.map +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maka/maka-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.102.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"summary": "A command line tool for scaffolding Meteor 2.x applications using either React.",
|
|
6
6
|
"description": "A command line tool for scaffolding Meteor 2.x applications using React.",
|
|
@@ -2178,6 +2178,24 @@ ${client.name} won't be remembering anything. Dead Johnsons pay nothing -- and t
|
|
|
2178
2178
|
this.player = player;
|
|
2179
2179
|
this.sceneSeed = sceneSeed;
|
|
2180
2180
|
this.initialized = false;
|
|
2181
|
+
// THE LIVE-SHEET LANE (2026-09-01): the PRIMARY player's condition
|
|
2182
|
+
// changes stream to the web sheet as tiny fire-and-forget reports
|
|
2183
|
+
// over the game's own link -- monitors move mid-fight. Set here and
|
|
2184
|
+
// nowhere else, so NPCs and crew shells (which are Players too)
|
|
2185
|
+
// never report; the anonymous/bench gate is evaluated at fire time
|
|
2186
|
+
// because _anonymous is decided after construction.
|
|
2187
|
+
this.player.onConditionChanged = () => {
|
|
2188
|
+
if (this._anonymous || this._bench)
|
|
2189
|
+
return;
|
|
2190
|
+
// Checked HERE too, before the import -- a dynamic import after a
|
|
2191
|
+
// Jest file's teardown is itself the failure, so the gate cannot
|
|
2192
|
+
// live only on the far side of one.
|
|
2193
|
+
if (process.env.MAKA_NO_DDP === '1')
|
|
2194
|
+
return;
|
|
2195
|
+
void import('./utilities/condition-report.js')
|
|
2196
|
+
.then(m => m.reportConditionSoon(this.player))
|
|
2197
|
+
.catch(() => undefined);
|
|
2198
|
+
};
|
|
2181
2199
|
}
|
|
2182
2200
|
registerCommands() {
|
|
2183
2201
|
CommandFactory.registerCommand('look', LookCommand);
|