Skip to content

Commit e39ef2a

Browse files
committed
Fixed no method exception
1 parent 14285d0 commit e39ef2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/kotlin/com/lambda/module/HudModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ abstract class HudModule(
115115

116116
listen<RenderEvent.GUI.HUD> {
117117
while (scheduled.isNotEmpty()) {
118-
scheduled.removeFirst().invoke()
118+
scheduled.removeAt(0).invoke()
119119
}
120120

121121
base.onEvent(GuiEvent.Update)

0 commit comments

Comments
 (0)