Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
richardwhateverr authored and MiniDigger committed Oct 18, 2024
1 parent c26dbe5 commit 56ad2d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class TrollMethodCheck implements MethodCheck {
@Override
public MethodCheckResult check(MethodInsnNode insnNode, MethodNode methodNode, ClassNode classNode) {
if (insnNode.name.equals("<init>") && insnNode.owner.endsWith("PacketPlayOutExplosion")) {
return new MethodCheckResult(Severity.MEDIUM, methodNode, classNode, "creates fake explosion packet than can potentially be used to crash players");
return new MethodCheckResult(Severity.MEDIUM, methodNode, classNode, "creates fake explosion packet that can potentially be used to crash players");
}
return null;
}
Expand Down

0 comments on commit 56ad2d0

Please sign in to comment.