Jon Solow commited on
Commit
99c2775
·
1 Parent(s): 577d253

Add note regarding player cost

Browse files
Files changed (1) hide show
  1. src/pages/2_My_Keepers.py +8 -3
src/pages/2_My_Keepers.py CHANGED
@@ -87,10 +87,15 @@ def get_page():
87
  index=None,
88
  )
89
  if selection:
 
 
 
 
 
 
 
90
  if st.button("Add Selection"):
91
- effective_cost = selection["keeper_cost"]
92
- while effective_cost in selected_keeper_cost_map.values():
93
- effective_cost -= 1
94
  select_keeper(selection["player_id"], selection["manager_guid"], effective_cost)
95
  st.rerun()
96
  st.header("Options")
 
87
  index=None,
88
  )
89
  if selection:
90
+ effective_cost = selection["keeper_cost"]
91
+ while effective_cost in selected_keeper_cost_map.values():
92
+ effective_cost -= 1
93
+ if effective_cost != selection["keeper_cost"]:
94
+ st.info(
95
+ f"Note: Player cost has been adjusted to round {effective_cost} because another keeper selection has conflicting cost. If you wish to change the effective order, please reset selections and begin your selections with the player you want to take in the latest round."
96
+ )
97
  if st.button("Add Selection"):
98
+
 
 
99
  select_keeper(selection["player_id"], selection["manager_guid"], effective_cost)
100
  st.rerun()
101
  st.header("Options")