diff options
author | Darkvater <darkvater@openttd.org> | 2005-05-28 16:59:51 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2005-05-28 16:59:51 +0000 |
commit | 426aa514fffd879e6b81f75fec22901aaf111e89 (patch) | |
tree | 16197bc31e9a939437238374d21b651af9438348 /scripts/pre_dedicated.scr.example | |
parent | 8ef3f896f5f20992b18e0ecea7cfa59b8fdffc67 (diff) | |
download | openttd-426aa514fffd879e6b81f75fec22901aaf111e89.tar.xz |
(svn r2372) - Fix (console): update the example scripts in the scripts/ directory to reflect the new console functionality
- Fix (console): any line starting with a '#' is a comment so ignore it
- Fix (console): The special variables whose value can only be set by a custom process should, also print out their newly set value there, instead of relying on the default printout which is slightly confusing. Eg after you change the value it still printed out 'current value for...' instead of 'XXX changed to...'
Diffstat (limited to 'scripts/pre_dedicated.scr.example')
-rw-r--r-- | scripts/pre_dedicated.scr.example | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/pre_dedicated.scr.example b/scripts/pre_dedicated.scr.example index c4a9e2e8f..f915ba2b7 100644 --- a/scripts/pre_dedicated.scr.example +++ b/scripts/pre_dedicated.scr.example @@ -1,2 +1,3 @@ -set server_ip 0.0.0.0 -set server_port 3979 +# set default server port, and have the dedicated server listen on all ports +server_ip = 0.0.0.0 +server_port = 3979 |