Remove trailing space from join_game_and_respawn_packets.py

This commit is contained in:
joo 2020-08-17 12:01:03 +02:00
parent 3f4a5d46a6
commit fcacb8abf8
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class JoinGamePacket(AbstractDimensionPacket):
def field_string(self, field):
if field == 'dimension_codec':
# pylint: disable=no-member
return nbt_to_snbt(self.dimension_codec)
return nbt_to_snbt(self.dimension_codec)
return super(JoinGamePacket, self).field_string(field)