@everymatrix/casino-lobby 0.0.351 → 0.0.353
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-lobby",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.353",
|
|
4
4
|
"main": "dist/casino-lobby.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "b66ff51fb21b14cba5ab2efa029995d4fe4ceed1"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
export let clientstylingurl:string = '';
|
|
26
26
|
export let clockformat:string = '';
|
|
27
27
|
export let lobbyid:string = '';
|
|
28
|
-
export let currency:string = '
|
|
28
|
+
export let currency:string = '';
|
|
29
29
|
|
|
30
30
|
export let loginurl:string = '';
|
|
31
31
|
export let registerurl:string = '';
|
|
@@ -152,6 +152,7 @@
|
|
|
152
152
|
checkSession(endpoint, session).then((res:any) => {
|
|
153
153
|
sessionID = res.Guid;
|
|
154
154
|
playerID = res.UserID;
|
|
155
|
+
currency = res.Currency;
|
|
155
156
|
isLoggedIn = true;
|
|
156
157
|
}, (err:any) => {
|
|
157
158
|
isLoggedIn = false;
|