Does @Multiverse notify all MV-Devs? I hope so.
I would like to know your opinion about changes like this one:
Now:
message.sendMessages(teleporter, new String[]{"You don't have permission to teleport another player to a " + ChatColor.GREEN + destination.getType() + " Destination.", ChatColor.RED + " (multiverse.teleport.other." + destination.getIdentifier() + ")"});
(taken from TeleportCommand.java @ 562de0f, just as example)
How I would like to change that:
message.sendMessages(teleporter, new String[] {String.format("You don't have permission to teleport another player to a %s%s Destination.", ChatColor.GREEN, destination.getType()), String.format("%s(multiverse.teleport.other.%s)", ChatColor.RED, destination.getIdentifier())});
Does @Multiverse notify all MV-Devs? I hope so.
I would like to know your opinion about changes like this one:
Now:
(taken from TeleportCommand.java @ 562de0f, just as example)
How I would like to change that: