Remove EGG, that's for chickens, silly.

This commit is contained in:
Eric Stokes 2012-02-05 00:10:36 -07:00
parent 6a2e0e5810
commit ad9d4e41ff

View File

@ -86,7 +86,8 @@ public class MVEntityListener implements Listener {
@EventHandler
public void creatureSpawn(CreatureSpawnEvent event) {
// Check to see if the Creature is spawned by a plugin, we don't want to prevent this behaviour.
if (event.getSpawnReason() == SpawnReason.CUSTOM || event.getSpawnReason() == SpawnReason.EGG) {
// TODO: Implement MONSTER_EGG when it becomes available.
if (event.getSpawnReason() == SpawnReason.CUSTOM) {
return;
}