Skip to content

Commit

Permalink
Fix: Kuudra Lines in CS (#3118)
Browse files Browse the repository at this point in the history
  • Loading branch information
j10a1n15 authored Dec 25, 2024
1 parent 52c078a commit e5b04fe
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,13 @@ object CustomScoreboard {

@HandleEvent
fun onIslandChange(event: IslandChangeEvent) {
if (event.newIsland != IslandType.NONE) updateIslandEntries()
if (event.newIsland != IslandType.NONE) {
updateIslandEntries()

runDelayed(3.seconds) {
updateIslandEntries()
}
}
}

private fun updateIslandEntries() {
Expand Down

0 comments on commit e5b04fe

Please sign in to comment.