From 8e012cb9ca94862a2c57e6d1cf132f40a8ba7e6a Mon Sep 17 00:00:00 2001 From: jojo Date: Sun, 27 Dec 2020 15:11:24 +0100 Subject: [PATCH] Simplify TraceEntity_12 --- .../src/de/steamwar/bausystem/tracer/TraceEntity_12.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/BauSystem_12/src/de/steamwar/bausystem/tracer/TraceEntity_12.java b/BauSystem_12/src/de/steamwar/bausystem/tracer/TraceEntity_12.java index 2e46bee..331bac5 100644 --- a/BauSystem_12/src/de/steamwar/bausystem/tracer/TraceEntity_12.java +++ b/BauSystem_12/src/de/steamwar/bausystem/tracer/TraceEntity_12.java @@ -28,12 +28,10 @@ import org.bukkit.util.Vector; class TraceEntity_12 extends EntityFallingBlock implements AbstractTraceEntity { - private Vector position; private boolean tnt; public TraceEntity_12(World world, Vector position, Player player, boolean exploded, boolean tnt) { super(((CraftWorld) world).getHandle(), position.getX(), position.getY(), position.getZ(), tnt ? Blocks.TNT.getBlockData() : Blocks.STAINED_GLASS.getBlockData()); - this.position = position; this.tnt = tnt; this.setNoGravity(true);