mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-10-31 21:47:10 +00:00
35 lines
753 B
Java
35 lines
753 B
Java
|
package me.totalfreedom.totalfreedommod;
|
||
|
|
||
|
import me.totalfreedom.totalfreedommod.command.Command_sit;
|
||
|
import org.bukkit.entity.ArmorStand;
|
||
|
import org.bukkit.entity.Entity;
|
||
|
import org.bukkit.event.EventHandler;
|
||
|
import org.spigotmc.event.entity.EntityDismountEvent;
|
||
|
|
||
|
public class Sitter extends FreedomService
|
||
|
{
|
||
|
@Override
|
||
|
public void onStart()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onStop()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
@EventHandler
|
||
|
public void onEntityDismount(EntityDismountEvent e)
|
||
|
{
|
||
|
Entity dm = e.getDismounted();
|
||
|
if (dm instanceof ArmorStand)
|
||
|
{
|
||
|
if (Command_sit.STANDS.contains(dm))
|
||
|
{
|
||
|
Command_sit.STANDS.remove(dm);
|
||
|
dm.remove();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|