File Details
pq_stop_creeper_stop.jar
- R
- Apr 24, 2019
- 1.04 KB
- 2.5K
- 1.13
File Name
pq_stop_creeper_stop.jar
Supported Versions
- 1.13
YES end of creepers explosions, but others mob are normal
source code (is an emplosion? its a creeper? stop.):
@EventHandler public void onEntityExplode(EntityExplodeEvent event){
if(event.getEntity().getType() == EntityType.CREEPER){
event.setCancelled(true);
}
}

