Merge branch 'master' of http://169.254.27.70:3000/sasha80/uarep-ctl into master-prd

This commit is contained in:
Maxim Name
2025-07-07 17:13:21 +03:00
4 changed files with 8 additions and 24 deletions

View File

@@ -233,9 +233,9 @@ func poll_receive_udp(sock: Socket) -> bool:
units[addr_port].parse(data, tick)
continue
if unit_keys.has(port):
var key = unit_keys[port]
if units.has(key):
units[key].parse(data, tick)
var key1 = unit_keys[port]
if units.has(key1):
units[key1].parse(data, tick)
continue
port = sock.get_local_port()
var key = ['*', port]