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
<p>As an illustration, suppose you are <spanstyle="color: #056fb7; font-weight: bold;">Player {{player_name}}</span><divclass=""></div></p>
29
+
<p>
30
+
As an illustration, suppose you are <spanstyle="color: #056fb7; font-weight: bold;">Player {{player_name}}.</span><divclass=""></div>
31
+
</p>
30
32
<p>Please perform the following tasks:</p>
31
33
<ul>
32
34
<liid="task-submit-preferred">Submit a preferred proposal <spanclass="checkmark" style="visibility: hidden;">✅</span></li>
33
35
<liid="task-clear-preferred">Clear your preferred proposal <spanclass="checkmark" style="visibility: hidden;">✅</span></li>
34
36
</ul>
37
+
(The proposal IDs in this exercise refer to the proposals under "All Proposals" below, though it does not matter for this exercise what exactly the proposals are.)
35
38
</div>
36
39
37
40
@@ -87,7 +90,7 @@ <h4> Group formation </h4>
87
90
<ul>
88
91
<li>
89
92
<spanstyle="color: #b70505; font-weight: bold;">
90
-
Only if <u> all players in a proposed group </u> agree on the same proposal is that proposal successful.
93
+
Only if <u> all players in a proposed group </u> agree on the same proposal ID is that proposal successful.
Copy file name to clipboardExpand all lines: survey/__init__.py
+6-6
Original file line number
Diff line number
Diff line change
@@ -190,7 +190,7 @@ class Player(BasePlayer):
190
190
"Strongly Agree",
191
191
"No opinion",
192
192
],
193
-
label="If adding player X to a group never increases the budget, player X should get nothing.",
193
+
label="If adding a certain player to a group never increases the budget, this player should get nothing.",
194
194
widget=widgets.RadioSelectHorizontal,
195
195
) # type: ignore
196
196
@@ -203,7 +203,7 @@ class Player(BasePlayer):
203
203
"Strongly Agree",
204
204
"No opinion",
205
205
],
206
-
label="If adding player X to a group always has the same impact on the budget as adding player Y, then player X and player Y should get the same payoff.",
206
+
label="If adding a certain player to a group always has the same impact on the budget as adding a certain other player, then both players should get the same payoff.",
207
207
widget=widgets.RadioSelectHorizontal,
208
208
) # type: ignore
209
209
@@ -216,7 +216,7 @@ class Player(BasePlayer):
216
216
"Strongly Agree",
217
217
"No opinion",
218
218
],
219
-
label="The payoffs at the end of a bargaining round should always add up to the biggest possible budget (100 points). ",
219
+
label="At the end of a bargaining round the biggest possible budget (100 points) should be paid out. ",
220
220
widget=widgets.RadioSelectHorizontal,
221
221
) # type: ignore
222
222
@@ -229,7 +229,7 @@ class Player(BasePlayer):
229
229
"Strongly Agree",
230
230
"No opinion",
231
231
],
232
-
label="Suppose in round 3 the group budgets are the sum of the group budgets in round 1 and 2 for any group. Then the payoff of player X should the be the sum of the payoff player X got in round 1 and 2.",
232
+
label="Suppose in round 3 the group budgets are the sum of the group budgets in round 1 and 2, for any group. Then the payoff of each player should the be the sum of the payoffs that that player got in round 1 and 2.",
233
233
widget=widgets.RadioSelectHorizontal,
234
234
) # type: ignore
235
235
@@ -242,7 +242,7 @@ class Player(BasePlayer):
242
242
"Strongly Agree",
243
243
"No opinion",
244
244
],
245
-
label="Suppose in round 2 each group budget is twice as large as in in round 1. Then the payoff of player X should be double the amount player X got in round 1.",
245
+
label="Suppose in round 2 each group budget is twice as large as in in round 1. Then the payoff of each player should be double the amount that player got in round 1.",
246
246
widget=widgets.RadioSelectHorizontal,
247
247
) # type: ignore
248
248
@@ -255,7 +255,7 @@ class Player(BasePlayer):
255
255
"Strongly Agree",
256
256
"No opinion",
257
257
],
258
-
label="If player X and player Y would have a budget of Z if they formed a group on their own, then the payoffs of player X and Y should be at least Z in total in the final accepted proposal.",
258
+
label="If two players would have a budget of B points if they formed a group on their own, then the payoff of both players should sum up to at least B points in total in the final accepted proposal.",
0 commit comments