mirror of
https://github.com/PaperMC/Waterfall.git
synced 2025-01-05 15:38:11 +01:00
23 lines
1.0 KiB
Diff
23 lines
1.0 KiB
Diff
From e25b383744ba5d85ced3770a20497b0252f25cce Mon Sep 17 00:00:00 2001
|
|
From: Techcable <Techcable@techcable.net>
|
|
Date: Wed, 6 Apr 2016 23:46:00 -0700
|
|
Subject: [PATCH] Better debug checks
|
|
|
|
|
|
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java b/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java
|
|
index 96d3c99e..da53ff0f 100644
|
|
--- a/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java
|
|
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/Protocol.java
|
|
@@ -470,7 +470,7 @@ public enum Protocol
|
|
{
|
|
throw new BadPacketException( "Unsupported protocol version" );
|
|
}
|
|
- Preconditions.checkArgument( protocolData.packetMap.containsKey( packet ), "Cannot get ID for packet " + packet );
|
|
+ Preconditions.checkArgument( protocolData.packetMap.containsKey( packet ), "Cannot get ID for packet %s in state %s", packet, protocolPhase);
|
|
|
|
return protocolData.packetMap.get( packet );
|
|
}
|
|
--
|
|
2.15.1.windows.2
|
|
|