mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-23 18:55:14 +01:00
fixed command response being sent to all players
This commit is contained in:
parent
123d005adf
commit
b3f8a0d0d5
@ -1288,7 +1288,7 @@ public class DynmapPlugin
|
|||||||
public void sendMessage(String msg)
|
public void sendMessage(String msg)
|
||||||
{
|
{
|
||||||
ITextComponent ichatcomponent = new StringTextComponent(msg);
|
ITextComponent ichatcomponent = new StringTextComponent(msg);
|
||||||
server.getPlayerList().func_232641_a_(ichatcomponent, ChatType.CHAT, player.getUniqueID());
|
player.sendMessage(ichatcomponent, Util.field_240973_b_);
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public boolean isInvisible() {
|
public boolean isInvisible() {
|
||||||
|
@ -1298,7 +1298,7 @@ public class DynmapPlugin
|
|||||||
public void sendMessage(String msg)
|
public void sendMessage(String msg)
|
||||||
{
|
{
|
||||||
ITextComponent ichatcomponent = new StringTextComponent(msg);
|
ITextComponent ichatcomponent = new StringTextComponent(msg);
|
||||||
server.getPlayerList().func_232641_a_(ichatcomponent, ChatType.CHAT, player.getUniqueID());
|
player.sendMessage(ichatcomponent, Util.field_240973_b_);
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public boolean isInvisible() {
|
public boolean isInvisible() {
|
||||||
|
Loading…
Reference in New Issue
Block a user