Skip to content

Commit 56ad2d0

Browse files
richardwhateverrMiniDigger
authored andcommitted
fix typo
1 parent c26dbe5 commit 56ad2d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/papermc/hangar/scanner/check/method/TrollMethodCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class TrollMethodCheck implements MethodCheck {
1010
@Override
1111
public MethodCheckResult check(MethodInsnNode insnNode, MethodNode methodNode, ClassNode classNode) {
1212
if (insnNode.name.equals("<init>") && insnNode.owner.endsWith("PacketPlayOutExplosion")) {
13-
return new MethodCheckResult(Severity.MEDIUM, methodNode, classNode, "creates fake explosion packet than can potentially be used to crash players");
13+
return new MethodCheckResult(Severity.MEDIUM, methodNode, classNode, "creates fake explosion packet that can potentially be used to crash players");
1414
}
1515
return null;
1616
}

0 commit comments

Comments
 (0)