Commit 06546707 authored by AZthemute's avatar AZthemute Committed by Melledy
Browse files

Fixed sendmessage command output.

Also clarified coop command in help command.
parent 66b642ef
...@@ -15,7 +15,7 @@ public final class SendMessageCommand implements CommandHandler { ...@@ -15,7 +15,7 @@ public final class SendMessageCommand implements CommandHandler {
@Override @Override
public void execute(Player sender, Player targetPlayer, List<String> args) { public void execute(Player sender, Player targetPlayer, List<String> args) {
if (args.size() == 0) { if (args.size() == 0) {
CommandHandler.sendMessage(null, translate(sender, "commands.sendMessage.usage")); CommandHandler.sendMessage(sender, translate(sender, "commands.sendMessage.usage"));
return; return;
} }
......
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
"coop": { "coop": {
"usage": "Usage: coop [host UID]", "usage": "Usage: coop [host UID]",
"success": "Summoned %s to %s's world.", "success": "Summoned %s to %s's world.",
"description": "Forces someone to join the world of others" "description": "Forces someone to join the world of others. If no one is targeted, it sends you into co-op mode anyway."
}, },
"enter_dungeon": { "enter_dungeon": {
"usage": "Usage: enterdungeon <dungeonID>", "usage": "Usage: enterdungeon <dungeonID>",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment