Skip to content

Commit 3fca786

Browse files
committed
remove remaining colour shit and changed version so cube can release and we can be all happy and dandy
1 parent a2456c5 commit 3fca786

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group "me.clip"
11-
version "2.11.2-DEV-${System.getProperty("BUILD_NUMBER")}"
11+
version "2.11.2"
1212

1313
description "An awesome placeholder provider!"
1414

src/main/java/me/clip/placeholderapi/PlaceholderAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public static String setRelationalPlaceholders(Player one, Player two, String te
202202
}
203203
}
204204

205-
return Msg.color(text);
205+
return text;
206206
}
207207

208208
/**

src/main/java/me/clip/placeholderapi/replacer/CharsReplacer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public String apply(@NotNull final String text, @Nullable final OfflinePlayer pl
128128
continue;
129129
}
130130

131-
builder.append(ChatColor.translateAlternateColorCodes('&', replacement));
131+
builder.append(replacement);
132132
}
133133

134134
return builder.toString();

0 commit comments

Comments
 (0)