mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-11-07 17:36:15 +00:00
syncing ballistica 1.7.50
This commit is contained in:
parent
dd4dfed507
commit
3047591b10
187 changed files with 9472 additions and 4302 deletions
9
dist/ba_data/python/bacommon/net.py
vendored
9
dist/ba_data/python/bacommon/net.py
vendored
|
|
@ -20,11 +20,7 @@ class ServerNodeEntry:
|
|||
"""Information about a specific server."""
|
||||
|
||||
zone: Annotated[str, IOAttrs('r')]
|
||||
|
||||
# TODO: Remove soft_default after all master-servers upgraded.
|
||||
latlong: Annotated[
|
||||
tuple[float, float] | None, IOAttrs('ll', soft_default=None)
|
||||
]
|
||||
latlong: Annotated[tuple[float, float] | None, IOAttrs('ll')]
|
||||
address: Annotated[str, IOAttrs('a')]
|
||||
port: Annotated[int, IOAttrs('p')]
|
||||
|
||||
|
|
@ -43,6 +39,9 @@ class ServerNodeQueryResponse:
|
|||
ping_per_dist: Annotated[float, IOAttrs('ppd')]
|
||||
max_dist: Annotated[float, IOAttrs('md')]
|
||||
|
||||
# If this came from a bootstrap server, which zone was it in.
|
||||
bootstrap_zone: Annotated[str | None, IOAttrs('b', soft_default=None)]
|
||||
|
||||
debug_log_seconds: Annotated[
|
||||
float | None, IOAttrs('d', store_default=False)
|
||||
] = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue