Fix dead link

This commit is contained in:
Sam 2018-09-15 14:50:36 +01:00 committed by Alexander Meech
parent d066252288
commit 984a86acab
3 changed files with 8 additions and 2 deletions

View File

@ -565,6 +565,12 @@ public class MineKart extends SoloGame implements IPacketHandler
public void playerChat(AsyncPlayerChatEvent event)
{
Player player = event.getPlayer();
if (!player.isOp())
{
return;
}
Kart kart = _karts.get(player);
if (kart == null)

View File

@ -20,7 +20,7 @@ public class SpellFortify extends Spell
public SpellFortify(Wizards game)
{
super(game, "Fortify", SpellType.Defense, new ItemStack(Material.IRON_HOE), TimeUnit.SECONDS.toMillis(20));
super(game, "Heal", SpellType.Defense, new ItemStack(Material.IRON_HOE), TimeUnit.SECONDS.toMillis(20));
}
@Override

View File

@ -63,7 +63,7 @@ public class LobbyManager extends GameManager
HoverEvent hoverEvent = new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ComponentBuilder("Click here to visit the forums.")
.color(ChatColor.YELLOW)
.create());
ClickEvent clickEvent = new ClickEvent(ClickEvent.Action.OPEN_URL, "https://mineplex.com/forums/nano-games.388/");
ClickEvent clickEvent = new ClickEvent(ClickEvent.Action.OPEN_URL, "https://xen.mineplex.com/forums/nano-games.388/");
for (BaseComponent component : components)
{