Skip to content

Commit

Permalink
Fix name of getBlockParticle() mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander01998 committed Nov 12, 2023
1 parent 959a2f4 commit 344b0db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/wurstclient/mixin/ClientWorldMixin.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ClientWorldMixin
@Inject(at = @At("HEAD"),
method = "getBlockParticle()Lnet/minecraft/block/Block;",
cancellable = true)
private void getBlockParticle(CallbackInfoReturnable<Block> cir)
private void onGetBlockParticle(CallbackInfoReturnable<Block> cir)
{
if(!WurstClient.INSTANCE.getHax().barrierEspHack.isEnabled())
return;
Expand Down

0 comments on commit 344b0db

Please sign in to comment.