13
0

Add border
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
Lixfel 2022-03-19 16:56:02 +01:00
Ursprung 2922d9a61f
Commit 62634f1793

Datei anzeigen

@ -56,7 +56,11 @@ public class LobbySystem extends JavaPlugin {
new ParticleListener(); new ParticleListener();
new InventoryInteraction(); new InventoryInteraction();
new WorldInteraction(); 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);
} }