upped explosion damage

This commit is contained in:
PanFritz
2015-06-15 23:10:08 +02:00
parent 98ae25df50
commit 4f30fb1a83

View File

@@ -380,7 +380,7 @@ def onHit(event):
return
entity = event.getEntity()
location = entity.getLocation()
entity.getWorld().createExplosion(location.getX(), location.getY(), location.getZ(), float(0.5), False, False)
entity.getWorld().createExplosion(location.getX(), location.getY(), location.getZ(), float(1), False, False)
@hook.event("player.PlayerInteractEvent", "high")