Uses of Class
net.minecraft.world.spawner.AbstractSpawner
-
Packages that use AbstractSpawner Package Description net.minecraft.entity.item.minecart net.minecraft.tileentity net.minecraftforge.common net.minecraftforge.event net.minecraftforge.event.entity.living -
-
Uses of AbstractSpawner in net.minecraft.entity.item.minecart
Fields in net.minecraft.entity.item.minecart declared as AbstractSpawner Modifier and Type Field Description private AbstractSpawner
SpawnerMinecartEntity. spawner
-
Uses of AbstractSpawner in net.minecraft.tileentity
Fields in net.minecraft.tileentity declared as AbstractSpawner Modifier and Type Field Description private AbstractSpawner
MobSpawnerTileEntity. spawner
Methods in net.minecraft.tileentity that return AbstractSpawner Modifier and Type Method Description AbstractSpawner
MobSpawnerTileEntity. getSpawner()
-
Uses of AbstractSpawner in net.minecraftforge.common
Methods in net.minecraftforge.common with parameters of type AbstractSpawner Modifier and Type Method Description static int
ForgeHooks. canEntitySpawn(MobEntity entity, IWorld world, double x, double y, double z, AbstractSpawner spawner, SpawnReason spawnReason)
-
Uses of AbstractSpawner in net.minecraftforge.event
Methods in net.minecraftforge.event with parameters of type AbstractSpawner Modifier and Type Method Description static net.minecraftforge.eventbus.api.Event.Result
ForgeEventFactory. canEntitySpawn(MobEntity entity, IWorld world, double x, double y, double z, AbstractSpawner spawner, SpawnReason spawnReason)
static boolean
ForgeEventFactory. canEntitySpawnSpawner(MobEntity entity, World world, float x, float y, float z, AbstractSpawner spawner)
static boolean
ForgeEventFactory. doSpecialSpawn(MobEntity entity, World world, float x, float y, float z, AbstractSpawner spawner, SpawnReason spawnReason)
-
Uses of AbstractSpawner in net.minecraftforge.event.entity.living
Fields in net.minecraftforge.event.entity.living declared as AbstractSpawner Modifier and Type Field Description private AbstractSpawner
LivingSpawnEvent.CheckSpawn. spawner
private AbstractSpawner
LivingSpawnEvent.SpecialSpawn. spawner
Methods in net.minecraftforge.event.entity.living that return AbstractSpawner Modifier and Type Method Description AbstractSpawner
LivingSpawnEvent.CheckSpawn. getSpawner()
AbstractSpawner
LivingSpawnEvent.SpecialSpawn. getSpawner()
Constructors in net.minecraftforge.event.entity.living with parameters of type AbstractSpawner Constructor Description CheckSpawn(MobEntity entity, IWorld world, double x, double y, double z, AbstractSpawner spawner, SpawnReason spawnReason)
CheckSpawn is fired when an Entity is about to be spawned.SpecialSpawn(MobEntity entity, World world, double x, double y, double z, AbstractSpawner spawner, SpawnReason spawnReason)
-