moar undead fixes
This commit is contained in:
parent
24254635a8
commit
d7ad2cdc58
@ -182,7 +182,7 @@ public class ClansManager extends MiniClientPlugin<ClientClan>implements IRelati
|
||||
private Explosion _explosion;
|
||||
private GoldManager _goldManager;
|
||||
private WarPointEvasion _warPointEvasion;
|
||||
|
||||
private ObserverManager _observerManager;
|
||||
private Punish _punish;
|
||||
|
||||
private int _inviteExpire = 2;
|
||||
@ -271,7 +271,7 @@ public class ClansManager extends MiniClientPlugin<ClientClan>implements IRelati
|
||||
new Spawn(plugin, this);
|
||||
new NPCManager(this, _hologramManager);
|
||||
new SafeLog(plugin, this);
|
||||
new ObserverManager(plugin, _condition, this);
|
||||
_observerManager = new ObserverManager(plugin, _condition, this);
|
||||
|
||||
new ClanEnergyTracker(plugin, this);
|
||||
new StuckManager(this);
|
||||
@ -1172,4 +1172,10 @@ public class ClansManager extends MiniClientPlugin<ClientClan>implements IRelati
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public ObserverManager getObserverManager()
|
||||
{
|
||||
return _observerManager;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -4,6 +4,7 @@ import java.util.HashSet;
|
||||
import java.util.Iterator;
|
||||
import java.util.Set;
|
||||
|
||||
import mineplex.game.clans.clans.ClansManager;
|
||||
import org.bukkit.Effect;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.Material;
|
||||
@ -474,6 +475,7 @@ public class UndeadCamp extends WorldEvent
|
||||
@EventHandler(priority = EventPriority.HIGHEST)
|
||||
public void onChestOpen(PlayerInteractEvent event)
|
||||
{
|
||||
if(ClansManager.getInstance().getObserverManager().isObserver(event.getPlayer())) return;;
|
||||
Block block = event.getClickedBlock();
|
||||
if (_containers.contains(block))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user