@maka/maka-cli 5.232.0 → 5.233.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maka/maka-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.233.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"summary": "A command line tool for scaffolding Meteor 3.x applications using either React.",
|
|
6
6
|
"description": "A command line tool for scaffolding Meteor 3.x applications using React.",
|
|
@@ -87,10 +87,18 @@ export class PanCommand extends Command {
|
|
|
87
87
|
return bill;
|
|
88
88
|
item.wirelessOn = on;
|
|
89
89
|
if (!on) {
|
|
90
|
-
|
|
90
|
+
const lines = [
|
|
91
91
|
`${item.name} drops off the network -- wireless OFF.`,
|
|
92
|
-
`It broadcasts nothing now: no bonus, no icon, nothing to hack
|
|
93
|
-
]
|
|
92
|
+
`It broadcasts nothing now: no bonus, no icon, nothing to hack.`,
|
|
93
|
+
];
|
|
94
|
+
// The borrowing line is only true of a SLAVE. Said of the master
|
|
95
|
+
// itself -- the commlink the whole PAN hangs off -- it was simply
|
|
96
|
+
// false, and switching your only link off is exactly when a player
|
|
97
|
+
// is reading carefully.
|
|
98
|
+
lines.push(a.getPanMaster()
|
|
99
|
+
? `It also stops borrowing the master's ratings to defend itself (p.233), which is only a loss if anyone was looking.`
|
|
100
|
+
: `That was the master, so there is no PAN left at all -- nothing of yours is on the Matrix now.`);
|
|
101
|
+
return lines.join('\n');
|
|
94
102
|
}
|
|
95
103
|
const over = a.panOverflow();
|
|
96
104
|
const lines = [`${item.name} joins the network -- wireless ON.`];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maka/maka-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.233.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"summary": "A command line tool for scaffolding Meteor 3.x applications using either React.",
|
|
6
6
|
"description": "A command line tool for scaffolding Meteor 3.x applications using React.",
|