Skip to content

Commit

Permalink
Fix explosion mixin
Browse files Browse the repository at this point in the history
The field is a ServerLevel not a Level
  • Loading branch information
jpenilla committed Oct 22, 2024
1 parent 3e8cb80 commit a3acd46
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
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;
Expand Down Expand Up @@ -40,7 +41,7 @@ abstract class ServerExplosionMixin {

@Shadow
@Final
private Level level;
private ServerLevel level;

@Shadow
@Final
Expand Down

0 comments on commit a3acd46

Please sign in to comment.