Dont send action bar every tick
This commit is contained in:
parent
9bf3e81ded
commit
5410e8dd04
@ -175,11 +175,11 @@ public abstract class Disguise {
|
||||
@Override
|
||||
public void run() {
|
||||
if (DisguiseConfig.isNotifyPlayerDisguised() && getEntity() instanceof Player &&
|
||||
actionBarTicks++ % 20 == 0) {
|
||||
++actionBarTicks % 20 == 0) {
|
||||
actionBarTicks = 0;
|
||||
|
||||
((Player) getEntity()).spigot().sendMessage(ChatMessageType.ACTION_BAR, new ComponentBuilder("")
|
||||
.appendLegacy(LibsMsg.ACTION_BAR_MESSAGE.get(getType().toReadable())).create());
|
||||
((Player) getEntity()).spigot().sendMessage(ChatMessageType.ACTION_BAR,
|
||||
new ComponentBuilder(LibsMsg.ACTION_BAR_MESSAGE.get(getType().toReadable())).create());
|
||||
}
|
||||
|
||||
// If entity is no longer valid. Remove it.
|
||||
|
Loading…
Reference in New Issue
Block a user