Skip to content

Commit 5535d55

Browse files
authored
Merge pull request #105 from Micke90s/issue-104-Version-1.1.2.4
Version 1.1.2.4
2 parents 6669cbc + c3ea212 commit 5535d55

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ These are the arguments you can use to customize server behavior with default va
9696
| HASHED_WORLD_SEED | "" | The hashed seed to use for a new world, added in v1.1. Set to "" to generate random seed. |
9797
| WORLD_MODE | 0 | Sets the world mode for the world. Can be Normal (0), Hard (1), Creative (2), Casual (4). |
9898
| SEASON | No Default | Overrides current season by setting to any of None (0), Easter (1), Halloween (2), Christmas (3), Valentine (4), Anniversary (5), CherryBlossom (6), LunarNewYear(7).<br/>**Do not set this env var if you want real date season.** |
99-
| GAME_ID | "" | Game ID to use for the server. Need to be at least 15 characters, no longer than 28 characters and alphanumeric, excluding I,l,Y,y,x,0,O,o. Empty or not valid means a new ID will be generated at start. |
99+
| GAME_ID | "" | Game ID to use for the server. Need to be at least 15 characters, no longer than 28 characters and alphanumeric. Empty or not valid means a new ID will be generated at start. |
100100
| MAX_PLAYERS | 10 | Maximum number of players that will be allowed to connect to server. |
101-
| SERVER_IP | No Default | Only used if port is set. Sets the address that the server will bind to. |
101+
| SERVER_IP | No Default | Only used if port is set. Sets the address that the server will bind to. Supports ipv4 and ipv6 addresses. If not set, default value 0.0.0.0 is used, which will accept connections from any internal ip. |
102102
| SERVER_PORT | No Default | Port used for direct connection mode. **Setting an value to this will cause the server behaviour to change!** [See Network Mode](#network-mode) |
103103
| PASSWORD | No Default | Password players should use when trying to join using direct connections. Maximum length password can be 28 characters. If omitted or invalid, a random password will be generated.|
104104
| ALLOW_ONLY_PLATFORM | No Default | Allow only players from given platform. If not set all platforms are allowed. Has no effect unless -port is also set enabling Direct Connections. Can be Steam (1), Epic (2), Microsoft (3), GOG (4). |

scripts/logfile-parser.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ sendServerStartMessage() {
7272
awk -F': ' '
7373
BEGIN { gameid=""; allowed_platforms=""; public_ip=""; port=""; password=""; }
7474
/^GameID:/ { gameid=$2 }
75+
/^Steam GameID:/ { gameid=$2 }
7576
/^Allowed platforms:/ { allowed_platforms=$2 }
7677
/^Public IP:/ { public_ip=$2 }
7778
/^Port:/ { port=$2 }

0 commit comments

Comments
 (0)