Skip to content

Commit f63bd94

Browse files
committed
🚑 Bump version
1 parent 2be6ce3 commit f63bd94

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
org.gradle.jvmargs=-Xmx1G
33

44
# Mod Properties
5-
mod_version = 1.2.6
5+
mod_version = 1.3.0
66
# Notes: when debugging, use rc's, so it would become: 0.X.X-rc.X
77
maven_group = dev.renoux
88
archives_base_name = emotes-1.21.5

src/main/java/dev/renoux/emotes/utils/EmoteUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ private synchronized int getAndAdvanceCurrentCodepoint() {
145145
currentCodepoint++;
146146
// Skip the space (' ') codepoint, because the TextRenderer does weird stuff with the space character
147147
// (like it doesn't get obfuscated and stuff).
148-
if (currentCodepoint == 32) currentCodepoint++;
148+
if (currentCodepoint == 32 || currentCodepoint == 10) currentCodepoint++;
149149
return prevCodepoint;
150150
}
151151
public Integer getCodepoint(String id) {

0 commit comments

Comments
 (0)