You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'At the end of the study, we will *randomly* pick one of the three negotiation games you played and give you a bonus payment from that game, **up to $10 USD.**',
544
+
'At the end of the study, we will *average* the money you earned across the three negotiation games, **up to $10 USD.**',
545
545
'There are two important features to remember about the bonus:',
546
546
' * The bonus will be equivalent to how much money you earn through trading *beyond* what you start with.',
547
547
' * If you do not complete all games, you will not receive a bonus payment.',
@@ -573,7 +573,7 @@ function createChipInfoPayout(numChips: number) {
573
573
endingValue,
574
574
`You would receive ${bonus} as a bonus for the first game.`,
575
575
'If you did not increase the value of your chips, you would not receive a bonus.',
576
-
'\n**Your total bonus will be randomly selected from one of the games.**',
576
+
'\n**Your total bonus will be averaged from your bonus payout across the three games.**',
577
577
'\nThe exact values will depend on your random chip valuations and your final holdings, so your payment may differ from this example.',
578
578
'\nThis payment is in addition to the base payment for participating.',
579
579
);
@@ -772,22 +772,22 @@ export function createPayoutItems() {
772
772
773
773
constgame1=createChipPayoutItem({
774
774
randomSelectionId: RANDOM_SELECTION_ID,
775
-
name: 'Payout from game 1 (one game was randomly selected)',
775
+
name: 'Payout from game 1',
776
776
stageId: CHIP_NEGOTIATION_COACH_ID,
777
777
baseCurrencyAmount: 0,
778
778
});
779
779
780
780
constgame2=createChipPayoutItem({
781
781
randomSelectionId: RANDOM_SELECTION_ID,
782
-
name: 'Payout from game 2 (one game was randomly selected)',
782
+
name: 'Payout from game 2',
783
783
stageId: CHIP_NEGOTIATION_ADVISOR_ID,
784
784
baseCurrencyAmount: 0,
785
785
});
786
786
787
787
// Add the game 3
788
788
constgame3=createChipPayoutItem({
789
789
randomSelectionId: RANDOM_SELECTION_ID,
790
-
name: 'Payout from game 3 (one game was randomly selected)',
790
+
name: 'Payout from game 3',
791
791
stageId: CHIP_NEGOTIATION_DELEGATE_ID,
792
792
baseCurrencyAmount: 0,
793
793
});
@@ -796,8 +796,9 @@ export function createPayoutItems() {
0 commit comments