Fix explosion mixin

The field is a ServerLevel not a Level
This commit is contained in:
Jason Penilla
2024-10-22 13:45:05 -07:00
parent 3e8cb80336
commit a3acd46ee1

View File

@@ -9,6 +9,7 @@ import it.unimi.dsi.fastutil.doubles.DoubleArrayList;
import it.unimi.dsi.fastutil.longs.Long2ObjectOpenHashMap;
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
import net.minecraft.core.BlockPos;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.util.Mth;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.level.ChunkPos;
@@ -40,7 +41,7 @@ abstract class ServerExplosionMixin {
@Shadow
@Final
private Level level;
private ServerLevel level;
@Shadow
@Final