From 62634f179339e46c6877c54ba41a23677c0c0aaa Mon Sep 17 00:00:00 2001 From: Lixfel Date: Sat, 19 Mar 2022 16:56:02 +0100 Subject: [PATCH] Add border --- src/de/steamwar/lobby/LobbySystem.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/de/steamwar/lobby/LobbySystem.java b/src/de/steamwar/lobby/LobbySystem.java index 54e78b1..977188a 100644 --- a/src/de/steamwar/lobby/LobbySystem.java +++ b/src/de/steamwar/lobby/LobbySystem.java @@ -56,7 +56,11 @@ public class LobbySystem extends JavaPlugin { new ParticleListener(); new InventoryInteraction(); new WorldInteraction(); - //new AlphaWall(l -> l.getZ() > 1250, AlphaWall.REFLECT_Z); + + new AlphaWall(l -> l.getX() > 1199, AlphaWall.REFLECT_X); + new AlphaWall(l -> l.getX() < 2977, AlphaWall.REFLECT_X); + new AlphaWall(l -> l.getZ() > 892, AlphaWall.REFLECT_Z); + new AlphaWall(l -> l.getZ() < 1794, AlphaWall.REFLECT_Z); }