From 50175b2518355adba535397067abc815d0c50e8b Mon Sep 17 00:00:00 2001 From: D4rkr34lm Date: Sun, 18 Aug 2024 20:53:36 +0200 Subject: [PATCH] Fixed access --- .../src/de/steamwar/bausystem/features/tracer/TNTPoint.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TNTPoint.java b/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TNTPoint.java index 785aca63..1e9fd38d 100644 --- a/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TNTPoint.java +++ b/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TNTPoint.java @@ -22,6 +22,7 @@ package de.steamwar.bausystem.features.tracer; import de.steamwar.bausystem.region.Region; import de.steamwar.bausystem.region.utils.RegionExtensionType; import de.steamwar.bausystem.region.utils.RegionType; +import lombok.AccessLevel; import lombok.AllArgsConstructor; import lombok.Getter; import org.bukkit.Bukkit; @@ -40,7 +41,7 @@ import java.util.Optional; /** * Recording of a tnt at a specific tick */ -@AllArgsConstructor +@AllArgsConstructor(access = AccessLevel.PACKAGE) @Getter public class TNTPoint{ /** @@ -99,7 +100,7 @@ public class TNTPoint{ private List history; /** - * Constructor fo object creation in trace recording + * Constructor for object creation in trace recording */ protected TNTPoint(int tntId, TNTPrimed tnt, boolean explosion, boolean afterFirstExplosion, long ticksSinceStart, List history, List destroyedBlocks) {