Compare commits

...

2 Commits

Author SHA1 Message Date
Cynthia Foxwell e323de2d57 Bump version 2024-03-17 22:25:46 -06:00
Cynthia Foxwell b53798bd0b copypaste moment (fixes GH-3) 2024-03-17 22:25:30 -06:00
2 changed files with 4 additions and 7 deletions

View File

@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx4G
org.gradle.parallel = true
# Mod Properties
version = 2.0.1
version = 2.0.2
maven_group = pm.c7.scout
archives_base_name = Scout

View File

@ -18,9 +18,6 @@ import com.google.common.collect.Sets;
import joptsimple.internal.Strings;
import net.fabricmc.loader.api.FabricLoader;
import net.minecraft.client.font.TextHandler;
import net.minecraft.text.StringVisitable;
import net.minecraft.text.Style;
import pm.c7.scout.ScoutUtil;
@ -102,7 +99,6 @@ public class ScoutConfig {
public static String getSavedConfig() {
Map<String, List<String>> unparsed = Maps.newLinkedHashMap();
TextHandler wrapper = new TextHandler((point, style) -> 1);
for (Field field : ScoutConfig.class.getFields()) {
ConfigValue annot = field.getAnnotation(ConfigValue.class);
if (annot != null) {
@ -113,9 +109,10 @@ public class ScoutConfig {
String commentText = "";
if (comment != null) {
commentText += "\t/**\n";
for (StringVisitable line : wrapper.wrapLines(comment.value(), 80, Style.EMPTY)) {
var lines = comment.value().split("\\n");
for (String line : lines) {
commentText += "\t * ";
commentText += line.getString();
commentText += line;
commentText += "\n";
}
commentText += "\t */\n";