remove some logging

bottom-bar
Ivory 2023-01-12 09:04:28 -05:00
parent ecc9a7a99f
commit 493c81f779
1 changed files with 0 additions and 4 deletions

View File

@ -125,16 +125,12 @@ public class SelectionLayer extends GameObject implements IMouseCaptureArea, ITr
thingBox.x, thingBox.y,
thingBox.z, thingBox.w
)) {
System.out.println("Considering selecting " + thing);
int thingPrio = thing.getSelectPriority().toValue();
if(thingPrio > prio) {
newSelection.clear();
prio = thingPrio;
System.out.println("updated prio to " + prio);
System.out.println("List cleared");
}
if(thingPrio >= prio) {
System.out.println("added " + thing);
newSelection.add(thing);
}
}