Fix line length

This commit is contained in:
Tristan Gosselin-Hane 2020-05-22 14:05:45 -04:00
parent e61cfffab1
commit 7d9ffb8836
1 changed files with 3 additions and 2 deletions

View File

@ -103,8 +103,9 @@ class FakeClientHandler(object):
# Called upon entering the play state.
self.write_packet(clientbound.play.JoinGamePacket(
entity_id=0, game_mode=0, dimension=0, hashed_seed=12345,
difficulty=2, max_players=1, level_type='default', is_debug=False, is_flat=False,
reduced_debug_info=False, render_distance=9, respawn_screen=False))
difficulty=2, max_players=1, level_type='default', is_debug=False,
is_flat=False, reduced_debug_info=False, render_distance=9,
respawn_screen=False))
def handle_play_packet(self, packet):
# Called upon each packet received after handle_play_start() returns.