western-world 3.0.682 → 3.0.683
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.
|
@@ -19,14 +19,16 @@
|
|
|
19
19
|
<script>
|
|
20
20
|
const westernWorldEl = document.querySelector('western-world');
|
|
21
21
|
const GAME_MOCK = {
|
|
22
|
-
players: {
|
|
22
|
+
players: { 1024: { firms: [10] } },
|
|
23
|
+
players_order: ['1024'],
|
|
23
24
|
stocks: { 10: { stars: 0 }, 68: { stars: 3 } },
|
|
24
25
|
};
|
|
25
26
|
const ALL_FIRMS = [
|
|
26
27
|
117, 65, 56, 130, 128, 11, 84, 68, 78, 29, 49, 127, 119, 116, 114, 67, 63, 61, 59, 58, 54, 53, 46, 38, 10,
|
|
27
28
|
];
|
|
28
29
|
const GAME_MOCK_ALL_FIRMS = {
|
|
29
|
-
players: {
|
|
30
|
+
players: { 1024: { firms: ALL_FIRMS } },
|
|
31
|
+
players_order: ['1024'],
|
|
30
32
|
stocks: ALL_FIRMS.reduce((previousValue, firmId) => ({ ...previousValue, [firmId]: { stars: 3 } }), {}),
|
|
31
33
|
};
|
|
32
34
|
|