We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4137cb4 commit 50a1b1eCopy full SHA for 50a1b1e
modules/utils/src/main/java/org/polyfrost/oneconfig/api/hypixel/v1/HypixelUtils.java
@@ -105,7 +105,7 @@ protected InfoBase() {
105
106
@Override
107
public final String toString() {
108
- return packet.toString();
+ return packet == null ? "null" : packet.toString();
109
}
110
111
public T getPacket() {
0 commit comments