Merge pull request #3095 from LolHens/fix-command-response

fix command response being sent to all players
This commit is contained in:
mikeprimm 2020-08-16 12:41:04 -05:00 committed by GitHub
commit f370fc6040
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1288,7 +1288,7 @@ public class DynmapPlugin
public void sendMessage(String msg)
{
ITextComponent ichatcomponent = new StringTextComponent(msg);
server.getPlayerList().func_232641_a_(ichatcomponent, ChatType.CHAT, player.getUniqueID());
player.sendMessage(ichatcomponent, Util.field_240973_b_);
}
@Override
public boolean isInvisible() {

View File

@ -1298,7 +1298,7 @@ public class DynmapPlugin
public void sendMessage(String msg)
{
ITextComponent ichatcomponent = new StringTextComponent(msg);
server.getPlayerList().func_232641_a_(ichatcomponent, ChatType.CHAT, player.getUniqueID());
player.sendMessage(ichatcomponent, Util.field_240973_b_);
}
@Override
public boolean isInvisible() {