worked on removing force-loaded chunks
This commit is contained in:
parent
4f7fdf62a6
commit
37d474a49f
2 changed files with 38 additions and 4 deletions
|
@ -62,8 +62,20 @@ public final class GibsoniaCraft extends JavaPlugin {
|
||||||
if (!this.loadedChunks.contains(chunk))
|
if (!this.loadedChunks.contains(chunk))
|
||||||
{
|
{
|
||||||
chunk.setForceLoaded(true);
|
chunk.setForceLoaded(true);
|
||||||
|
this.loadedChunks.add(chunk);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
this.loadedChunks.add(chunk);
|
|
||||||
|
/**
|
||||||
|
* Removes a chunk from the list of force-loaded chunks
|
||||||
|
* @param chunk The chunk to remove as force-loaded
|
||||||
|
*/
|
||||||
|
public void ForceChunkInactive(final Chunk chunk)
|
||||||
|
{
|
||||||
|
if (this.loadedChunks.contains(chunk))
|
||||||
|
{
|
||||||
|
chunk.setForceLoaded(false);
|
||||||
|
this.loadedChunks.remove(chunk);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ import lightling.gibsoniacraft.util.ToolUtil;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.inventory.meta.Damageable;
|
import org.bukkit.inventory.meta.Damageable;
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
|
|
||||||
import org.bukkit.enchantments.Enchantment;
|
import org.bukkit.enchantments.Enchantment;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -306,10 +307,31 @@ public class BlockListener implements Listener
|
||||||
item.setItemMeta(meta);
|
item.setItemMeta(meta);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the placing of chunk loaders
|
||||||
|
* @param bpEvent The event that triggered this method
|
||||||
|
*/
|
||||||
@EventHandler(priority = EventPriority.LOW, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.LOW, ignoreCancelled = true)
|
||||||
public void LoaderPlace(BlockPlaceEvent bpEvent)
|
public void LoaderPlace(BlockPlaceEvent bpEvent)
|
||||||
{
|
{
|
||||||
Chunk chunk = bpEvent.getBlock().getLocation().getChunk();
|
if (bpEvent.getBlock().hasMetadata("Keeps chunks loaded"))
|
||||||
this.gcPlugin.ForceChunkActive(chunk);
|
{
|
||||||
|
Chunk chunk = bpEvent.getBlock().getLocation().getChunk();
|
||||||
|
this.gcPlugin.ForceChunkActive(chunk);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the breaking of chunk loaders
|
||||||
|
* @param bbEvent The event that triggered this method
|
||||||
|
*/
|
||||||
|
@EventHandler(priority = EventPriority.LOW, ignoreCancelled = true)
|
||||||
|
public void LoaderDestroy(BlockBreakEvent bbEvent)
|
||||||
|
{
|
||||||
|
if (bbEvent.getBlock().hasMetadata("Keeps chunks loaded"))
|
||||||
|
{
|
||||||
|
Chunk chunk = bbEvent.getBlock().getLocation().getChunk();
|
||||||
|
this.gcPlugin.ForceChunkInactive(chunk);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue