Fix broken multiplayer dialog
dialog used to force port 5000 for rx and tx. This patch restores this.
This commit is contained in:
parent
31f087c3d6
commit
3f13b1b3e2
1 changed files with 3 additions and 1 deletions
|
@ -230,7 +230,9 @@
|
||||||
<command>nasal</command>
|
<command>nasal</command>
|
||||||
<script>
|
<script>
|
||||||
fgcommand("multiplayer-connect", props.Node.new({
|
fgcommand("multiplayer-connect", props.Node.new({
|
||||||
"servername": getprop("/sim/multiplay/selected-server")
|
"servername": getprop("/sim/multiplay/selected-server"),
|
||||||
|
"rxport": 5000,
|
||||||
|
"txport": 5000
|
||||||
}));
|
}));
|
||||||
</script>
|
</script>
|
||||||
</binding>
|
</binding>
|
||||||
|
|
Loading…
Reference in a new issue