diff --git a/src/main/java/com/github/steveice10/packetlib/io/stream/StreamNetInput.java b/src/main/java/com/github/steveice10/packetlib/io/stream/StreamNetInput.java index 957f9e1f..97c95e2b 100644 --- a/src/main/java/com/github/steveice10/packetlib/io/stream/StreamNetInput.java +++ b/src/main/java/com/github/steveice10/packetlib/io/stream/StreamNetInput.java @@ -270,6 +270,10 @@ public class StreamNetInput implements NetInput { return this.in.markSupported(); } + public void reset() throws IOException { + this.in.reset(); + } + public long skip(long n) throws IOException { return this.in.skip(n); }