@maka/maka-cli 5.229.0 → 5.230.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.229.0",
3
+ "version": "5.230.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.",
@@ -1035,7 +1035,16 @@ export class Player extends AbstractPlayer {
1035
1035
  return true;
1036
1036
  if (item.isFirearm())
1037
1037
  return item.isSmartgun;
1038
- return item.category === Category.Drone || item.category === Category.Electronics;
1038
+ if (item.category === Category.Drone)
1039
+ return true;
1040
+ // ELECTRONICS ONLY IF IT IS ACTUALLY A DEVICE. p.233 is narrow --
1041
+ // "only devices can be slaves, masters, or part of a PAN" -- and
1042
+ // Category.Electronics is not: it is also where the survival kit,
1043
+ // the binoculars and a thermographic vision MOD live. A catalog row
1044
+ // that declares a `device` block is the engine's own record of
1045
+ // having a Device Rating, so that is the test. Without it the
1046
+ // dashboard listed a first-aid tin as hackable gear.
1047
+ return item.category === Category.Electronics && item.row?.device !== undefined;
1039
1048
  }
1040
1049
  /**
1041
1050
  * Defense against a PAN intrusion, itemised: the book's attribute plus
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maka/maka-cli",
3
- "version": "5.229.0",
3
+ "version": "5.230.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.",