Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/wowsims/sod
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Jan 12, 2025
2 parents f283731 + f07dd38 commit 1fd610e
Show file tree
Hide file tree
Showing 7 changed files with 251 additions and 63 deletions.
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"name": "sod",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.11.1"
},
"scripts": {
"build": "bazel build //...",
"test": "bazel test //...",
Expand Down
2 changes: 1 addition & 1 deletion sim/rogue/evasion.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (rogue *Rogue) RegisterEvasionSpell() {
DefaultCast: core.Cast{},
CD: core.Cooldown{
Timer: rogue.NewTimer(),
Duration: []time.Duration{time.Minute * 5, time.Minute*5 - time.Second*45, time.Second*5 - time.Second*90}[rogue.Talents.Elusiveness],
Duration: []time.Duration{time.Minute * 5, time.Minute*5 - time.Second*45, time.Minute*5 - time.Second*90}[rogue.Talents.Endurance],
},
IgnoreHaste: true,
},
Expand Down
2 changes: 1 addition & 1 deletion ui/core/components/individual_sim_ui/apl_values.ts
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ export function valueListFieldConfig(field: string): AplHelpers.APLPickerBuilder
index: number,
config: ListItemPickerConfig<Player<any>, APLValue | undefined>,
) => new APLValuePicker(parent, player, config),
allowedActions: ['create', 'delete'],
allowedActions: ['copy', 'create', 'delete', 'move'],
actions: {
create: {
useIcon: true,
Expand Down
Loading

0 comments on commit 1fd610e

Please sign in to comment.