File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ export class ShardBridge implements Bridge.Service {
321
321
322
322
if ( config . totalLegitPlayers === 0 ) config . totalLegitPlayers = 1 ;
323
323
324
- config . rewardItemAmount = this . info . rewardItemAmount ;
324
+ // config.rewardItemAmount = this.info.rewardItemAmount;
325
325
// parseFloat(
326
326
// (
327
327
// Math.round(
@@ -330,7 +330,7 @@ export class ShardBridge implements Bridge.Service {
330
330
// ).toFixed(3)
331
331
// );
332
332
333
- config . rewardWinnerAmount = this . info . rewardWinnerAmount ;
333
+ // config.rewardWinnerAmount = this.info.rewardWinnerAmount;
334
334
// parseFloat(
335
335
// (
336
336
// Math.round(
@@ -340,9 +340,11 @@ export class ShardBridge implements Bridge.Service {
340
340
// ).toFixed(3)
341
341
// );
342
342
343
+ console . log ( 'Configured seer info' , this . info ) ;
344
+
343
345
return {
344
- rewardWinnerAmount : config . rewardWinnerAmount ,
345
- rewardItemAmount : config . rewardItemAmount ,
346
+ rewardWinnerAmount : this . info . rewardWinnerAmount ,
347
+ rewardItemAmount : this . info . rewardItemAmount ,
346
348
} ;
347
349
}
348
350
@@ -359,7 +361,7 @@ export class ShardBridge implements Bridge.Service {
359
361
const res = await this . realm . seer . emit . evolution . saveRound . mutate ( {
360
362
shardId : ctx . client . id ,
361
363
round : input ,
362
- rewardWinnerAmount : config . rewardWinnerAmount ,
364
+ rewardWinnerAmount : this . info . rewardWinnerAmount ,
363
365
clients : this . clients ,
364
366
} ) ;
365
367
You can’t perform that action at this time.
0 commit comments