Check if mob spawned from a spawner?

Discussion in 'Plugin Development' started by EgyptianKing, Mar 27, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    EgyptianKing

    How do I check if a mob spawned from a spawner?
     
  2. Offline

    NonameSL

    Code:
    @EventHandler
    public void onCreatureSpawn(CreatureSpawnEvent e){
        if(e.getSpawnReason()==SpawnReason.SPAWNER){
            //Code
        }
    }
    
     
Thread Status:
Not open for further replies.

Share This Page