diff --git a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RArmorStand.java b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RArmorStand.java index 24d5963d..746a080e 100644 --- a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RArmorStand.java +++ b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RArmorStand.java @@ -19,7 +19,6 @@ package de.steamwar.entity; -import lombok.AccessLevel; import lombok.Getter; import lombok.Setter; import net.minecraft.network.syncher.EntityDataAccessor; @@ -29,15 +28,14 @@ import org.bukkit.entity.EntityType; import java.util.function.Consumer; +@Getter public class RArmorStand extends REntity implements RInteractableEntity { private static final EntityDataAccessor sizeWatcher = new EntityDataAccessor<>(15, EntityDataSerializers.BYTE); - @Getter private final Size size; @Setter - @Getter(AccessLevel.PRIVATE) private REntityActionListener callback = null; public RArmorStand(REntityServer server, Location location, Size size) { diff --git a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RFallingBlockEntity.java b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RFallingBlockEntity.java index 1d691f11..e1ab5cba 100644 --- a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RFallingBlockEntity.java +++ b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RFallingBlockEntity.java @@ -33,7 +33,6 @@ public class RFallingBlockEntity extends REntity implements RInteractableEntity< private final Material material; @Setter - @Getter(AccessLevel.PRIVATE) private REntityActionListener callback = null; public RFallingBlockEntity(REntityServer server, Location location, Material material) { diff --git a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RInteraction.java b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RInteraction.java index 7c8a71c7..58514280 100644 --- a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RInteraction.java +++ b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RInteraction.java @@ -20,7 +20,6 @@ package de.steamwar.entity; import de.steamwar.core.BountifulWrapper; -import lombok.AccessLevel; import lombok.Getter; import lombok.Setter; import org.bukkit.Location; @@ -40,7 +39,6 @@ public class RInteraction extends REntity implements RInteractableEntity updatePacketSink = o -> server.updateEntity(this, o); @Setter - @Getter(AccessLevel.PRIVATE) private REntityActionListener callback = null; private float interactionWidth = 1.0f; diff --git a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RPlayer.java b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RPlayer.java index ed4d0516..daa9a648 100644 --- a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RPlayer.java +++ b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/RPlayer.java @@ -26,7 +26,6 @@ import de.steamwar.core.ProtocolWrapper; import de.steamwar.network.CoreNetworkHandler; import de.steamwar.network.NetworkSender; import de.steamwar.network.packets.common.PlayerSkinRequestPacket; -import lombok.AccessLevel; import lombok.Getter; import lombok.Setter; import net.minecraft.network.protocol.game.ClientboundAddEntityPacket; @@ -51,7 +50,7 @@ public class RPlayer extends REntity implements RInteractableEntity { private final String name; @Setter - @Getter(AccessLevel.PRIVATE) + @Getter private REntityActionListener callback = null; public RPlayer(REntityServer server, UUID uuid, String name, Location location) {