From ad4fb4505937174b0ac96896c1c778a9f90df5e1 Mon Sep 17 00:00:00 2001 From: Super_ Date: Thu, 16 Jul 2020 08:05:07 -0400 Subject: [PATCH] accidentally ended translation early --- .../java/me/totalfreedom/tfguilds/command/InviteSubcommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/totalfreedom/tfguilds/command/InviteSubcommand.java b/src/main/java/me/totalfreedom/tfguilds/command/InviteSubcommand.java index 0bc382d..66e5f89 100644 --- a/src/main/java/me/totalfreedom/tfguilds/command/InviteSubcommand.java +++ b/src/main/java/me/totalfreedom/tfguilds/command/InviteSubcommand.java @@ -67,7 +67,7 @@ public class InviteSubcommand extends Common implements CommandExecutor } INVITES.put(invitee, guild); - invitee.sendMessage(tl("%p%You have been invited to join %s%" + GUtil.colorize(guild.getName())) + "%p% through %s%" + player.getName() + "%p%'s invite!"); + invitee.sendMessage(tl("%p%You have been invited to join %s%" + GUtil.colorize(guild.getName()) + "%p% through %s%" + player.getName() + "%p%'s invite!")); invitee.sendMessage(tl("%p%Do %s%/g join " + ChatColor.stripColor(GUtil.colorize(guild.getName())) + "%p% to join!")); invitee.sendMessage(tl("%p%This invite will expire in 90 seconds.")); sender.sendMessage(tl("%p%Invite sent!"));