Skip to content

Commit abd6983

Browse files
authored
Merge pull request #3253 from Multiverse/fix/donate-colour
Add green colour to donate and enable message
2 parents ccfcae9 + 7f15a28 commit abd6983

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/mvplugins/multiverse/core/MultiverseCore.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,12 +225,12 @@ private Try<Void> saveAllConfigs() {
225225
* Logs the enable message.
226226
*/
227227
private void logEnableMessage() {
228-
Logging.config("Version %s (API v%s) Enabled - By %s",
228+
Logging.config("\u001B[32mVersion %s (API v%s) Enabled - By %s\u001B[39m",
229229
this.getDescription().getVersion(), getVersionAsNumber(), StringFormatter.joinAnd(getDescription().getAuthors()));
230230

231231
if (configProvider.get().isShowingDonateMessage()) {
232-
Logging.config("Help dumptruckman keep this project alive. Become a patron! https://www.patreon.com/dumptruckman");
233-
Logging.config("One time donations are also appreciated: https://www.paypal.me/dumptruckman");
232+
Logging.config("\u001B[32mHelp dumptruckman keep this project alive. Become a patron! https://www.patreon.com/dumptruckman\u001B[39m");
233+
Logging.config("\u001B[32mOne time donations are also appreciated: https://www.paypal.me/dumptruckman\u001B[39m");
234234
}
235235
}
236236

0 commit comments

Comments
 (0)