Better defaults for client version fields

This commit is contained in:
ChillerDragon 2023-05-08 08:58:27 +02:00
parent ffbc603ad6
commit b3406be723
2 changed files with 5 additions and 3 deletions

View file

@ -30,5 +30,7 @@
"game.sv_tune_params.laser_bounce_num": 1,
"game.sv_tune_params.laser_bounce_cost": 0,
"game.sv_tune_params.player_collision": 1,
"game.sv_tune_params.player_hooking": 1
"game.sv_tune_params.player_hooking": 1,
"system.info.version": "0.7 802f1be60a05665f",
"system.info.client_version": 1797
}

View file

@ -9,9 +9,9 @@ class MsgInfo(PrettyPrint):
def __init__(
self,
chunk_header: ChunkHeader = ChunkHeader(),
version: str = 'default',
version: str = '0.7 802f1be60a05665f',
password: str = '',
client_version: int = 0
client_version: int = 1797
) -> None:
self.message_name: str = 'info'
self.system_message: bool = True