File tree Expand file tree Collapse file tree
src/main/java/dev/renoux/emotes/utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22org.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
77maven_group = dev.renoux
88archives_base_name = emotes-1.21.5
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments