Made some changes for javadoc generation
This commit is contained in:
parent
e31e6eca88
commit
72746f5b4e
@ -50,7 +50,9 @@ public class TextUtil {
|
||||
char[] chars = first.toCharArray();
|
||||
|
||||
for (int i = 0; i < chars.length; i++) {
|
||||
if (chars[i] == '§') {
|
||||
// changed this so javadocs wont throw an error
|
||||
String compareChar = chars[i] + "";
|
||||
if (compareChar.equals("§")) {
|
||||
if (color != null) {
|
||||
if (color.isColor()) {
|
||||
message.then(text).color(color);
|
||||
|
Loading…
Reference in New Issue
Block a user