Fix dead link
This commit is contained in:
parent
d066252288
commit
984a86acab
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user