diff --git a/patches/server/Adventure.patch b/patches/server/Adventure.patch
index dcbec569e7..0ed5890a74 100644
--- a/patches/server/Adventure.patch
+++ b/patches/server/Adventure.patch
@@ -3313,6 +3313,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
 +
 +    @Override
 +    public void line(final int index, final net.kyori.adventure.text.@NotNull Component line) throws IndexOutOfBoundsException {
++        com.google.common.base.Preconditions.checkArgument(line != null, "Line cannot be null");
 +        this.loadLines();
 +        this.lines.set(index, line);
 +    }