From 7a60c5aac79ad5315cabd95ee11588abf1f55121 Mon Sep 17 00:00:00 2001 From: "Kristian S. Stangeland" Date: Mon, 17 Sep 2012 16:40:08 +0200 Subject: [PATCH] Made the server registry static. --- ProtocolLib/src/com/comphenix/protocol/Packets.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProtocolLib/src/com/comphenix/protocol/Packets.java b/ProtocolLib/src/com/comphenix/protocol/Packets.java index 08871e9a..587d0fdd 100644 --- a/ProtocolLib/src/com/comphenix/protocol/Packets.java +++ b/ProtocolLib/src/com/comphenix/protocol/Packets.java @@ -156,7 +156,7 @@ public final class Packets { * A registry that parses between names and packet IDs. * @return The current client registry. */ - public Server getServerRegistry() { + public static Server getServerRegistry() { return Server.getRegistry(); }