Skip to content

Commit

Permalink
Fix NoSuchFieldException... again...
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnemotechnician authored Sep 16, 2023
1 parent e79a709 commit 7f2ff47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import mindustry.gen.Groups.label
import java.awt.SystemColor.text

@PublishedApi
internal var updateField = Element::class.java.getField("update").also {
internal var updateField = Element::class.java.getDeclaredField("update").also {
it.isAccessible = true
}

Expand Down

0 comments on commit 7f2ff47

Please sign in to comment.