Skip to content

Commit ea4da37

Browse files
committed
Fix hardware store for baseball
1 parent bdf3380 commit ea4da37

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

TODO

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
random debuts option to shuffle entire draft class years https://old.reddit.com/r/BasketballGM/comments/194kdbc/new_saved_trades_page_under_the_players_menu_save/koj2fg1/?context=3
2+
13
sticky score on desktop live sim on desktop https://twitter.com/IcarusGant/status/1749201751599694324?t=z_DvDgHfzDAOIIRbcvbAuQ&s=19
24

35
is goat formula games played season filter working as intended? https://old.reddit.com/r/BasketballGM/comments/19cifzu/goat_formula_not_adding_up/

src/worker/util/achievements.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ const achievements: Achievement[] = [
920920
name: "Hardware Store",
921921
desc: bySport({
922922
baseball:
923-
"Players on your team win MVP, POY, ROY, ROY, and Finals MVP in the same season.",
923+
"Players on your team win MVP, POY, ROY, RPOY, and Finals MVP in the same season.",
924924
basketball:
925925
"Players on your team win MVP, DPOY, SMOY, MIP, ROY, and Finals MVP in the same season.",
926926
football:
@@ -941,8 +941,7 @@ const achievements: Achievement[] = [
941941
awards.mvp?.tid === userTid &&
942942
awards.poy?.tid === userTid &&
943943
awards.roy?.tid === userTid &&
944-
awards.goy?.tid === userTid &&
945-
awards.roy?.tid === userTid &&
944+
awards.rpoy?.tid === userTid &&
946945
awards.finalsMvp?.tid === userTid,
947946
basketball:
948947
awards &&

0 commit comments

Comments
 (0)