From 35988bfcd3d0529da247af5c90a42a12e56db905 Mon Sep 17 00:00:00 2001 From: D4rkr34lm Date: Thu, 18 Apr 2024 17:56:45 +0200 Subject: [PATCH] Made name consistent with old naming Signed-off-by: D4rkr34lm --- .../bausystem/features/tracer/rendering/BundleFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/rendering/BundleFilter.java b/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/rendering/BundleFilter.java index 640bce74..d6ba6b8b 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/rendering/BundleFilter.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/rendering/BundleFilter.java @@ -42,7 +42,7 @@ public enum BundleFilter { return true; }), - STRICT((TNTPoint a, TNTPoint b) -> { + RAW((TNTPoint a, TNTPoint b) -> { if (a.isExplosion() != b.isExplosion()) return false; if (!a.getLocation().equals(b.getLocation())) return false; if (!a.getVelocity().equals(b.getVelocity())) return false;