This commit is contained in:
Anuken
2023-08-16 16:32:11 -04:00
parent 5487dad75e
commit 63d036d6ed
2 changed files with 1 additions and 3 deletions

View File

@@ -352,7 +352,7 @@ public class BlockRenderer{
var bounds = camera.bounds(Tmp.r3).grow(tilesize * 2f);
//draw floor lights
floorTree.intersect(bounds, tile -> lightview.add(tile));
floorTree.intersect(bounds, lightview::add);
blockTree.intersect(bounds, tile -> {
if(tile.build == null || procLinks.add(tile.build.id)){

View File

@@ -187,9 +187,7 @@ public class PlayerListFragment{
ui.showConfirm("@confirm", Core.bundle.format("confirmkick", user.name()), () -> Call.adminRequest(user, AdminAction.kick, null));
dialog.hide();
}).row();
}
if(!user.isLocal()){
t.button("@player.trace", Icon.zoom, bstyle, () -> {
Call.adminRequest(user, AdminAction.trace, null);
dialog.hide();