Better defaults for client version fields
This commit is contained in:
parent
ffbc603ad6
commit
b3406be723
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue