-
-
Notifications
You must be signed in to change notification settings - Fork 326
Closed
Labels
PR: Better CodingImprovements in code, but not introducing new features.Improvements in code, but not introducing new features.Resolution: AcceptedMV-Team is aware of the issue/PR and will be looking into it.MV-Team is aware of the issue/PR and will be looking into it.Type: IdeaSuggestion for a new feature or enhancement.Suggestion for a new feature or enhancement.
Milestone
Description
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())});Metadata
Metadata
Assignees
Labels
PR: Better CodingImprovements in code, but not introducing new features.Improvements in code, but not introducing new features.Resolution: AcceptedMV-Team is aware of the issue/PR and will be looking into it.MV-Team is aware of the issue/PR and will be looking into it.Type: IdeaSuggestion for a new feature or enhancement.Suggestion for a new feature or enhancement.