This commit is contained in:
D4rkr34lm
2026-05-02 13:36:32 +02:00
parent 15f0344416
commit a41787d89d
@@ -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<TraceEntity> entities) {
for (TraceEntity entity : entities) {
entity.setGlowing(true);
}
}
};
/** /**
* Name of the flag * Name of the flag
*/ */