Skip to content

Commit e472116

Browse files
committed
2024-08-08T0641Z
1 parent 91c71d8 commit e472116

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ curl https://github.com/Windows81/Roblox-Freedom-Distribution/releases/latest/do
4343
To launch RFD, your command line will look something like this:
4444

4545
```
46-
./RFD.exe player -rh 172.88.194.43 -rp 2005 -wp 2006
46+
./RFD.exe player -h 172.88.194.43 -p 2005
4747
```
4848

4949
#### For GNU/Linux
@@ -65,7 +65,7 @@ pip install -r ./Source/requirements.txt
6565
To launch RFD, your command line will look something like this:
6666

6767
```
68-
py Source/_main.py player -rh 172.88.194.43 -rp 2005 -wp 2006
68+
py Source/_main.py player -h 172.88.194.43 -p 2005
6969
```
7070

7171
## Command Syntax
@@ -112,9 +112,9 @@ It's possible to connect to a webserver and an RCC server from different hosts.
112112

113113
RCC is an acronym for 'Rōblox Cloud Compute', which is the `exe` program we use to run the Rōblox servers. The UDP-based protocol it communicated with built under [RakNet](http://www.raknet.com/).
114114

115-
Host is specified by the `--rcc_host` or `-rh` option.
115+
Host is specified by the `-h` option (also by `--rcc_host` or `-rh`).
116116

117-
Port is specified by the `--rcc_port` or `-rp` option.
117+
Port is specified by the `-p` option (also by `--rcc_port` or `-rp`).
118118

119119
### Webserver (HTTPS)
120120

Source/launcher/subparsers/args_launch_mode/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def subparse(
2727
help='Game-specific options; defaults to ./GameConfig.toml. Please review each option before starting a new server up.',
2828
)
2929
subparser.add_argument(
30-
'--rcc_port', '-rp',
30+
'--rcc_port', '-rp', '-p',
3131
type=int,
3232
nargs='?',
3333
default=None,

0 commit comments

Comments
 (0)