diff options
author | Christina Berchtold <kekzdealer@gmail.com> | 2019-06-08 00:22:03 +0200 |
---|---|---|
committer | Christina Berchtold <kekzdealer@gmail.com> | 2019-06-08 00:22:03 +0200 |
commit | 528d3633ab5b7534325281759ffeec4772f68da9 (patch) | |
tree | 478a79f7eefa827f7e3752c6483a1880652ed96c /config/forgeChunkLoading.cfg | |
parent | 57c5da35a3a6b5cbf6cf36d6ab9e4886fc1e6342 (diff) | |
download | GT5-Unofficial-528d3633ab5b7534325281759ffeec4772f68da9.tar.gz GT5-Unofficial-528d3633ab5b7534325281759ffeec4772f68da9.tar.bz2 GT5-Unofficial-528d3633ab5b7534325281759ffeec4772f68da9.zip |
I haven't commited in a while D;
Diffstat (limited to 'config/forgeChunkLoading.cfg')
-rw-r--r-- | config/forgeChunkLoading.cfg | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/config/forgeChunkLoading.cfg b/config/forgeChunkLoading.cfg new file mode 100644 index 0000000000..3051bdffab --- /dev/null +++ b/config/forgeChunkLoading.cfg @@ -0,0 +1,47 @@ +# Configuration file + +########################################################################################################## +# Forge +#--------------------------------------------------------------------------------------------------------# +# Sample mod specific control section. +# Copy this section and rename the with the modid for the mod you wish to override. +# A value of zero in either entry effectively disables any chunkloading capabilities +# for that mod +########################################################################################################## + +Forge { + # Maximum chunks per ticket for the mod. + I:maximumChunksPerTicket=25 + + # Maximum ticket count for the mod. Zero disables chunkloading capabilities. + I:maximumTicketCount=200 +} + + +########################################################################################################## +# defaults +#--------------------------------------------------------------------------------------------------------# +# Default configuration for forge chunk loading control +########################################################################################################## + +defaults { + # Are mod overrides enabled? + B:enabled=true + + # The default maximum number of chunks a mod can force, per ticket, + # for a mod without an override. This is the maximum number of chunks a single ticket can force. + I:maximumChunksPerTicket=25 + + # The default maximum ticket count for a mod which does not have an override + # in this file. This is the number of chunk loading requests a mod is allowed to make. + I:maximumTicketCount=200 + + # The number of tickets a player can be assigned instead of a mod. This is shared across all mods and it is up to the mods to use it. + I:playerTicketCount=500 + + # Unloaded chunks can first be kept in a dormant cache for quicker + # loading times. Specify the size (in chunks) of that cache here + I:dormantChunkCacheSize=0 +} + + |