-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForgeRelocation.cfg
60 lines (53 loc) · 2.37 KB
/
ForgeRelocation.cfg
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
# Configuration file
##########################################################################################################
# General
#--------------------------------------------------------------------------------------------------------#
# Basic settings
##########################################################################################################
General {
I:moveLimit=2048
}
##########################################################################################################
# Tile Movers
#--------------------------------------------------------------------------------------------------------#
# Used to configure which registered Tile Mover is used for a block. Key-Value pairs are defined using
# the syntax key -> value.
# Most blocks are configurable, but some mods may have opted to lock which handlers can be used for its
# blocks.
# Possible keys:
# 'default' - to assign default handler.
# 'mod:<modID>' - to assign every block from a mod.
# '<modID>:<blockname>' - to assign block from a mod for every meta.
# '<modID>:<blockname>m<meta>' - to assign block from mod for specific meta.
#
# Available tile movers:
# 'saveload' - Saves the tile and then reloads it in the next position. Reliable but CPU intensive.
# 'coordpush' - Physically changes the location of tiles. Works if tiles do not cache their position.
# 'static' - Setting this disables movement for the specified block.
# 'FMP' - Tile mover for Forge Multipart
#
# Movers locked via API:
# mod:ForgeMultipart -> FMP
#
##########################################################################################################
"Tile Movers" {
S:"mover registry" <
default -> saveload
mod:minecraft -> coordpush
mod:Relocation -> coordpush
mod:ComputerCraft -> coordpush
mod:EnderStorage -> coordpush
mod:ChickenChunks -> coordpush
mod:Translocator -> coordpush
mod:ProjRed|Compatibility -> coordpush
mod:ProjRed|Core -> coordpush
mod:ProjRed|Expansion -> coordpush
mod:ProjRed|Exploration -> coordpush
mod:ProjRed|Fabrication -> coordpush
mod:ProjRed|Illumination -> coordpush
mod:ProjRed|Integration -> coordpush
mod:ProjRed|Transmission -> coordpush
mod:ProjRed|Transportation -> coordpush
mod:ForgeMultipart -> FMP
>
}