We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a10a94 commit 625ad4dCopy full SHA for 625ad4d
common/src/main/kotlin/com/lambda/module/modules/client/LambdaMoji.kt
@@ -18,7 +18,7 @@
18
package com.lambda.module.modules.client
19
20
import com.lambda.event.events.RenderEvent
21
-import com.lambda.event.listener.SafeListener.Companion.listener
+import com.lambda.event.listener.SafeListener.Companion.listen
22
import com.lambda.gui.api.RenderLayer
23
import com.lambda.module.Module
24
import com.lambda.module.tag.ModuleTag
@@ -37,7 +37,7 @@ object LambdaMoji : Module(
37
private val renderQueue = mutableListOf<Pair<String, Vec2d>>()
38
39
init {
40
- listener<RenderEvent.GUI.Scaled> {
+ listen<RenderEvent.GUI.Scaled> {
41
renderQueue.forEach { (text, position) ->
42
renderer.font.build(text, position, scale = scale)
43
}
0 commit comments