Skip to content

Commit

Permalink
fix hole destination randomization parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviergodart committed Oct 23, 2024
1 parent fcbc5e9 commit 7d9c801
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/param/destination.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,19 @@ func (d Destination) Right() {
}

func (d Destination) AltUp() {
d.SetDestinationAmount(1, 0)
d.SetDestinationAmount(0, 1)
}

func (d Destination) AltDown() {
d.SetDestinationAmount(-1, 0)
d.SetDestinationAmount(0, -1)
}

func (d Destination) AltLeft() {
d.SetDestinationAmount(0, -1)
d.SetDestinationAmount(-1, 0)
}

func (d Destination) AltRight() {
d.SetDestinationAmount(0, 1)
d.SetDestinationAmount(1, 0)
}

func (d Destination) Set(value int) {}
Expand Down

0 comments on commit 7d9c801

Please sign in to comment.