From a5d9f58df36f2636c62d653989f2008dc3d0ddea Mon Sep 17 00:00:00 2001 From: filoghost Date: Sun, 4 Dec 2022 15:06:40 +0100 Subject: [PATCH] Fix image rendering symbols --- checkstyle/checkstyle.xml | 1 - .../holographicdisplays/plugin/config/SettingsModel.java | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/checkstyle/checkstyle.xml b/checkstyle/checkstyle.xml index 8de221e3..6aa0f35e 100644 --- a/checkstyle/checkstyle.xml +++ b/checkstyle/checkstyle.xml @@ -125,7 +125,6 @@ - diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/SettingsModel.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/SettingsModel.java index 81a07264..20c3487c 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/SettingsModel.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/SettingsModel.java @@ -31,10 +31,10 @@ public class SettingsModel implements MappedConfig { int placeholderAPIDefaultRefreshIntervalTicks = 200; @Path("image-rendering.solid-pixel") - String imageRenderingSolidPixel = "\\u2588"; + String imageRenderingSolidPixel = "\u2588"; @Path("image-rendering.transparent-pixel") - String imageRenderingTransparentPixel = "&7 \\u23B9 "; + String imageRenderingTransparentPixel = "&7 \u23B9 "; @Path("bungee.refresh-seconds") int bungeeRefreshSeconds = 3;