-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathrailways-server.toml
64 lines (58 loc) · 1.49 KB
/
railways-server.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#.
#Miscellaneous settings
[misc]
#.
#Coupler will require points to be on the same or adjacent track edge, this will prevent the coupler from working if there is any form of junction in between the two points.
strictCoupler = false
#.
#Allow controlling Brass Switches remotely when approaching them on a train
flipDistantSwitches = true
#.
#Max distance between targeted track and placed switch stand
#Range: 16 ~ 128
switchPlacementRange = 64
#.
#Semaphore settings
[semaphores]
#.
#.
#Simplified semaphore placement (no upside-down placement)
simplifiedPlacement = true
#.
#Whether semaphore color order is reversed when the semaphores are oriented upside-down
flipYellowOrder = false
#.
#Conductor settings
[conductors]
#.
#.
#Conductor whistle is limited to the owner of a train
mustOwnBoundTrain = false
#.
#Maximum length of conductor vents
#Range: > 1
maxConductorVentLength = 64
#.
#Journeymap compat settings
[journeymap]
#.
#.
#[in Ticks]
#Outside-of-render-distance train sync time
#Range: 10 ~ 600
farTrainSyncTicks = 200
#.
#[in Ticks]
#In-render-distance train sync time
#Range: 1 ~ 600
nearTrainSyncTicks = 5
#.
#Optimization settings (may be experimental)
[optimization]
#.
#.
#Disable collisions between trains. May have significant performance impact if playing with many trains
disableTrainCollision = false
#.
#Optimizes belts placing items onto belts by skipping the calculation of an unused, but expensive, variable
optimizeFunnelBeltInteraction = false