Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
fix y coordinate of mining event widget
Browse files Browse the repository at this point in the history
  • Loading branch information
btwonion committed Aug 28, 2024
1 parent d40ad86 commit 5609b00
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ object MiningEventWidget : TableHudWidget(Component.translatable("menu.skylper.o
config.mining.eventOverlay.x = value.toInt()
field = value
}
override var y: Double = config.mining.eventOverlay.x.toDouble()
override var y: Double = config.mining.eventOverlay.y.toDouble()
set(value) {
config.mining.eventOverlay.x = value.toInt()
config.mining.eventOverlay.y = value.toInt()
field = value
}

Expand Down

0 comments on commit 5609b00

Please sign in to comment.