diff options
author | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2023-01-13 11:15:15 -0500 |
---|---|---|
committer | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2023-01-13 11:15:15 -0500 |
commit | f80dad6f297a60f23ca3066742c2df78e3b6fc83 (patch) | |
tree | 3c3d286bc6d9faa5305d88c784893717d7c8bdfb /src/main/kotlin/cc/woverflow/chatting/Chatting.kt | |
parent | 348abd9142f75d9fb723237fdd3cfa3174bbbc21 (diff) | |
download | Chatting-f80dad6f297a60f23ca3066742c2df78e3b6fc83.tar.gz Chatting-f80dad6f297a60f23ca3066742c2df78e3b6fc83.tar.bz2 Chatting-f80dad6f297a60f23ca3066742c2df78e3b6fc83.zip |
fix the empty void when screenshotting
Diffstat (limited to 'src/main/kotlin/cc/woverflow/chatting/Chatting.kt')
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/Chatting.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/cc/woverflow/chatting/Chatting.kt b/src/main/kotlin/cc/woverflow/chatting/Chatting.kt index 98b12fd..d74dd6a 100644 --- a/src/main/kotlin/cc/woverflow/chatting/Chatting.kt +++ b/src/main/kotlin/cc/woverflow/chatting/Chatting.kt @@ -235,7 +235,7 @@ object Chatting { val scale = Minecraft.getMinecraft().gameSettings.chatScale GlStateManager.scale(scale, scale, 1f) messages.entries.forEachIndexed { i: Int, entry: MutableMap.MutableEntry<String, ChatLine> -> - ModCompatHooks.redirectDrawString(entry.key, 0f, (messages.size - 1 - i) * 9f, 0xffffff, entry.value) + ModCompatHooks.redirectDrawString(entry.key, 0f, (messages.size - 1 - i) * 9f, 0xffffff, entry.value, true) } val image = fb.screenshot(file) |