summaryrefslogtreecommitdiff
path: root/snowbrawl.py
diff options
context:
space:
mode:
authorPanFritz <redstonenoobpan@gmail.com>2015-06-15 23:10:08 +0200
committerPanFritz <redstonenoobpan@gmail.com>2015-06-15 23:10:08 +0200
commit4f30fb1a8330a04aa26e805325ee09b6887c4334 (patch)
tree3d795733dbe9555bcdcced5c9ded2e1b262e661e /snowbrawl.py
parent98ae25df50ed45a570f39a02b09d732feca80567 (diff)
upped explosion damage
Diffstat (limited to 'snowbrawl.py')
-rw-r--r--snowbrawl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/snowbrawl.py b/snowbrawl.py
index 97eafaa..df3e022 100644
--- a/snowbrawl.py
+++ b/snowbrawl.py
@@ -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")