From f41c28a995aeabacfdaf87d764ae044041547632 Mon Sep 17 00:00:00 2001 From: ImproperIssues Date: Sat, 8 Jul 2023 19:37:31 -0700 Subject: [PATCH] lazer bounces set to 50 --- .../plugin/custom/items/customitems/LazerItem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/fun/ogre/ogredupealias/plugin/custom/items/customitems/LazerItem.java b/src/main/java/fun/ogre/ogredupealias/plugin/custom/items/customitems/LazerItem.java index bc2b915..529ca06 100644 --- a/src/main/java/fun/ogre/ogredupealias/plugin/custom/items/customitems/LazerItem.java +++ b/src/main/java/fun/ogre/ogredupealias/plugin/custom/items/customitems/LazerItem.java @@ -28,7 +28,7 @@ public class LazerItem extends CustomItem { Vector dir = player.getLocation().getDirection().normalize(); AtomicInteger attempts = new AtomicInteger(0); - castInDirection(loc, dir, true, 10, attempts); + castInDirection(loc, dir, true, 50, attempts); }; }