Skip to content

Commit

Permalink
Show team ovr in exhibition game team dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbmatter committed Dec 31, 2023
1 parent 352adaa commit 52c900c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
more options to set real rookie ratings https://old.reddit.com/r/BasketballGM/comments/166rgf3/monthly_suggestions_thread/jzri5zh/
- rookie season, draft position, peak performance, and career performance - allow weight of each of those for how important it is

BBGM injury rate too low? https://discord.com/channels/290013534023057409/290015591216054273/1190784110763970600

setting for overtime period length
Expand Down Expand Up @@ -147,9 +150,6 @@ wrong team abbrev various places
- any abbrev returned in stats or ratings from playersPlus is wrong
- using teamInfoCache from UI is probably wrong too

more options to set real rookie ratings https://old.reddit.com/r/BasketballGM/comments/166rgf3/monthly_suggestions_thread/jzri5zh/
- rookie season, draft position, peak performance, and career performance - allow weight of each of those for how important it is

button to randomize all contracts as if a new league https://old.reddit.com/r/nba/comments/w8igiw/basketball_gm_is_ready_to_get_you_through_the/ihriglz/?context=3
- handle contract history
- option to have it ignore rookie contracts
Expand Down
8 changes: 4 additions & 4 deletions src/ui/views/Exhibition.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,13 @@ const SelectTeam = ({
type: "real",
season,
pidOffset,
}
}
: {
type: "league",
lid: league.lid,
season,
pidOffset,
},
},
);
const newTeams = orderBy(
applyRealTeamInfos(newInfo.teams, realTeamInfo, season),
Expand Down Expand Up @@ -332,7 +332,7 @@ const SelectTeam = ({
<option key={i} value={i}>
{i}
</option>
))
))
: null}
</select>
<select
Expand All @@ -348,7 +348,7 @@ const SelectTeam = ({
>
{teams.map(t => (
<option key={t.tid} value={t.tid}>
{t.region} {t.name}
{t.region} {t.name} ({t.ovr} ovr)
</option>
))}
{teams.length === 0 ? (
Expand Down

0 comments on commit 52c900c

Please sign in to comment.