Fix image rendering symbols

This commit is contained in:
filoghost 2022-12-04 15:06:40 +01:00
parent 850beaebb8
commit a5d9f58df3
2 changed files with 2 additions and 3 deletions

View File

@ -125,7 +125,6 @@
<!-- Miscellaneous -->
<module name="ArrayTypeStyle"/>
<module name="AvoidEscapedUnicodeCharacters"/>
<module name="CommentsIndentation"/>
<module name="Indentation">
<property name="basicOffset" value="4"/>

View File

@ -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;