From 7710e17d02f02cef21f8c6be80386cc3ccdce6f8 Mon Sep 17 00:00:00 2001 From: stijnb1234 Date: Tue, 19 May 2020 11:25:52 +0200 Subject: [PATCH] All user messages are now English --- src/me/mctp/MCTPAudioCmd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/me/mctp/MCTPAudioCmd.java b/src/me/mctp/MCTPAudioCmd.java index bf08334..5be96dc 100644 --- a/src/me/mctp/MCTPAudioCmd.java +++ b/src/me/mctp/MCTPAudioCmd.java @@ -182,7 +182,7 @@ public class MCTPAudioCmd implements CommandExecutor { String url = "http://audio.mcthemeparks.eu/"; url = url + "?uuid=" + p.getUniqueId().toString().replace("-", "") + "&pin=" + pin; - TextComponent message = new TextComponent(TextComponent.fromLegacyText(prefix + "Klik hierop om te verbinden met de audioclient.")); + TextComponent message = new TextComponent(TextComponent.fromLegacyText(prefix + "Click here to connect to the audio client.")); message.setClickEvent(new ClickEvent(ClickEvent.Action.OPEN_URL, url)); p.spigot().sendMessage(message); return true;