Don't send messages to command blocks async

This commit is contained in:
Luck
2017-06-13 17:30:01 +01:00
Unverified
parent 0acefde805
commit c57947949c
2 changed files with 12 additions and 0 deletions
@@ -25,6 +25,8 @@
package me.lucko.luckperms.common.commands.sender;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import me.lucko.luckperms.common.plugin.LuckPermsPlugin;
@@ -40,6 +42,8 @@ import java.util.UUID;
*/
@RequiredArgsConstructor
public abstract class SenderFactory<T> {
@Getter(AccessLevel.PROTECTED)
private final LuckPermsPlugin plugin;
protected abstract String getName(T t);