From d15a1455b811bf305b4ad55345a8adfd3969ce2a Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 9 Feb 2019 22:00:25 +0100 Subject: [PATCH] fix the naming of this --- src/main/java/de/ellpeck/naturesaura/Helper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/ellpeck/naturesaura/Helper.java b/src/main/java/de/ellpeck/naturesaura/Helper.java index 6ace1ef8..4dafd711 100644 --- a/src/main/java/de/ellpeck/naturesaura/Helper.java +++ b/src/main/java/de/ellpeck/naturesaura/Helper.java @@ -49,7 +49,7 @@ import java.util.function.Function; public final class Helper { public static boolean getTileEntitiesInArea(World world, BlockPos pos, int radius, Function consumer) { - world.profiler.func_194340_a(() -> NaturesAura.MOD_ID + ":getAuraChunksInArea"); + world.profiler.func_194340_a(() -> NaturesAura.MOD_ID + ":getTileEntitiesInArea"); for (int x = (pos.getX() - radius) >> 4; x <= (pos.getX() + radius) >> 4; x++) { for (int z = (pos.getZ() - radius) >> 4; z <= (pos.getZ() + radius) >> 4; z++) { if (isChunkLoaded(world, x, z)) {