diff --git a/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/rendering/ViewFlag.java b/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/rendering/ViewFlag.java index 3029fe63..05fdcda0 100644 --- a/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/rendering/ViewFlag.java +++ b/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/rendering/ViewFlag.java @@ -198,6 +198,16 @@ public abstract class ViewFlag { } }; + public static ViewFlag HIGHLIGHT = new ViewFlag(true, false, "highlight", "h") { + @Override + public void modify(REntityServer server, List entities) { + for (TraceEntity entity : entities) { + entity.setGlowing(true); + } + } + + }; + /** * Name of the flag */