diff --git a/Plugins/Mineplex.Core/src/mineplex/core/friend/FriendManager.java b/Plugins/Mineplex.Core/src/mineplex/core/friend/FriendManager.java index baa9500c1..95e2cf1e4 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/friend/FriendManager.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/friend/FriendManager.java @@ -481,7 +481,7 @@ public class FriendManager extends MiniDbClientPlugin> { runSync(() -> { - caller.sendMessage(F.main(getName(), F.name(status.Name) + " is " + (status.Favourite ? "no longer" : "now") + " on your favourite friends.")); + caller.sendMessage(F.main(getName(), F.name(status.Name) + " is " + (status.Favourite ? "no longer" : "now") + " on your favorite friends.")); if (onSuccess != null) { @@ -675,7 +675,7 @@ public class FriendManager extends MiniDbClientPlugin> name.setColor(ChatColor.GRAY); } - name.setHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ComponentBuilder((friend.Favourite ? "Remove " + friend.Name + " from" : "Add " + friend.Name + " to") + " your favourite friends") + name.setHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ComponentBuilder((friend.Favourite ? "Remove " + friend.Name + " from" : "Add " + friend.Name + " to") + " your favorite friends") .create())); name.setClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, favouriteCommand + friend.Name)); message.addExtra(name); diff --git a/Plugins/Mineplex.Core/src/mineplex/core/friend/command/FriendFavouriteCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/friend/command/FriendFavouriteCommand.java index 38a736fec..b424aa1a2 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/friend/command/FriendFavouriteCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/friend/command/FriendFavouriteCommand.java @@ -9,7 +9,7 @@ import mineplex.core.friend.FriendManager.Perm; public class FriendFavouriteCommand extends CommandBase { - public static final String COMMAND = "friendfavourite"; + public static final String COMMAND = "friendfavorite"; public FriendFavouriteCommand(FriendManager plugin) { diff --git a/Plugins/Mineplex.Core/src/mineplex/core/friend/ui/FriendMainPage.java b/Plugins/Mineplex.Core/src/mineplex/core/friend/ui/FriendMainPage.java index 53c6aff38..24ee17b88 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/friend/ui/FriendMainPage.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/friend/ui/FriendMainPage.java @@ -209,7 +209,7 @@ public class FriendMainPage extends ShopPageBase builder.addLore( "Shift-Click to " + (status.Favourite ? "remove them from" : "add them to"), - "your favourite friends." + "your favorite friends." ); addButton(slot, builder.build(), (player, clickType) -> diff --git a/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/item/ItemCoinBomb.java b/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/item/ItemCoinBomb.java index 7334375b3..f9ab4dfca 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/item/ItemCoinBomb.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/item/ItemCoinBomb.java @@ -39,7 +39,7 @@ public class ItemCoinBomb extends ItemGadget public ItemCoinBomb(GadgetManager manager) { super(manager, "Treasure Party Bomb", - UtilText.splitLineToArray(C.cWhite + "It's party time! You'll be everyone's favourite player when you use one of these!", LineFormat.LORE), + UtilText.splitLineToArray(C.cWhite + "It's party time! You'll be everyone's favorite player when you use one of these!", LineFormat.LORE), -1, Material.PRISMARINE, (byte) 0, 30000, new Ammo("Treasure Party Bomb", "1 Coin Party Bomb", Material.PRISMARINE, (byte) 0, new String[]{C.cWhite + "1 Treasure Party Bomb"}, 2000, 1));