fix player damaged by source watcher

This commit is contained in:
igoudt 2017-05-03 16:59:45 +02:00
parent 01171abad2
commit a277aafbc5

View file

@ -47,7 +47,7 @@ public class PlayerDamagedBySourceWatcher extends Watcher {
private final Set<String> damageSourceIds = new HashSet<>(); private final Set<String> damageSourceIds = new HashSet<>();
public PlayerDamagedBySourceWatcher(UUID playerId) { public PlayerDamagedBySourceWatcher(UUID playerId) {
super(PlayerLostLifeWatcher.class.getSimpleName(), WatcherScope.PLAYER); super(PlayerDamagedBySourceWatcher.class.getSimpleName(), WatcherScope.PLAYER);
setControllerId(playerId); setControllerId(playerId);
} }