Fix ChatUtil maxWidth was ignored by centerText method

This commit is contained in:
Marc Baloup 2021-10-03 16:10:18 +02:00
parent bb61819332
commit f183d1ebef
Signed by: marcbal
GPG Key ID: BBC0FE3ABC30B893
1 changed files with 2 additions and 3 deletions

View File

@ -191,7 +191,7 @@ public class ChatUtil {
return centerText(text, repeatedChar, decorationColor, console, console ? CONSOLE_NB_CHAR_DEFAULT : DEFAULT_CHAT_WIDTH);
}
public static Chat centerText(Chat text, char repeatedChar, TextColor decorationColor, boolean console, int maxWidth) {
return centerText(text, repeatedChar, decorationColor, false, console, console ? CONSOLE_NB_CHAR_DEFAULT : DEFAULT_CHAT_WIDTH);
return centerText(text, repeatedChar, decorationColor, false, console, maxWidth);
}
/**
@ -251,8 +251,7 @@ public class ChatUtil {
}
public static Chat rightText(Chat text, char repeatedChar, TextColor decorationColor, int nbRight,
boolean console) {
public static Chat rightText(Chat text, char repeatedChar, TextColor decorationColor, int nbRight, boolean console) {
return rightText(text, repeatedChar, decorationColor, nbRight, console, console ? CONSOLE_NB_CHAR_DEFAULT : DEFAULT_CHAT_WIDTH);
}