Remove dead code from connection.py.

This commit is contained in:
joo 2018-07-19 12:21:49 +01:00
parent adc8d15ddc
commit f6f6511788
1 changed files with 0 additions and 6 deletions

View File

@ -645,12 +645,6 @@ class LoginReactor(PacketReactor):
serverbound.login.PluginResponsePacket(
message_id=packet.message_id, successful=False))
def react_not_handled(self, packet):
if packet.name == "login plugin request":
self.connection.write_packet(
serverbound.login.PluginResponsePacket(
message_id=packet.message_id, successful=False))
class PlayingReactor(PacketReactor):
get_clientbound_packets = staticmethod(clientbound.play.get_packets)