diff --git a/src/main/java/gent/zeus/mc13dtl/events/EventRunner.java b/src/main/java/gent/zeus/mc13dtl/events/EventRunner.java index 4c759e3..55862fa 100644 --- a/src/main/java/gent/zeus/mc13dtl/events/EventRunner.java +++ b/src/main/java/gent/zeus/mc13dtl/events/EventRunner.java @@ -17,7 +17,7 @@ public class EventRunner implements Runnable { static List currentEvents = new ArrayList<>(); public static List startTimes = List.of(3000, 13000, 6000, 5000, 14000, 100, 1000, 500, 10000, 5000, 13000, 13000, 5000); - private final List dayScores = List.of(10, 20, 50, 100, 150, 250, 400, 600, 850, 1150, 1500, 2000, 3000); + private final List dayScores = List.of(10, 20, 30, 50, 80, 130, 210, 340, 550, 890, 1440, 2000, 2500); private long day; diff --git a/src/main/java/gent/zeus/mc13dtl/events/catalog/ClimbEvent.java b/src/main/java/gent/zeus/mc13dtl/events/catalog/ClimbEvent.java index ecb644e..190ce2c 100644 --- a/src/main/java/gent/zeus/mc13dtl/events/catalog/ClimbEvent.java +++ b/src/main/java/gent/zeus/mc13dtl/events/catalog/ClimbEvent.java @@ -33,11 +33,11 @@ public class ClimbEvent extends Event { Player player = MC13DTL.board.getPlayers(team).getFirst(); Location location = new Location(Bukkit.getWorld("world"), ((int) player.getX()) + 0.5, -50, ((int) player.getZ()) + 0.5); location.getBlock().setType(Material.AIR); - location.add(0, -1, 0).getBlock().setType(Material.AIR); - location.add(0, -1, 0).getBlock().setType(Material.STONE); + location.clone().add(0, -1, 0).getBlock().setType(Material.AIR); + location.clone().add(0, -2, 0).getBlock().setType(Material.STONE); for (Player p : MC13DTL.board.getPlayers(team)) { - p.teleport(location.add(0, 2, 0)); + p.teleport(location); } super.start();