just getting the modpack files in here, also added the following folders to git ignore inside the top level of the minecraft folder (the one with save files in it): /server-resource-packs/ /saves/ /schematics/ /screenshots/ /logs/ /.mixin.out/ /crash-reports/ usernamecache.json usercache.json Also I added the following file extensions to be considered "large" by the server as not to pollute diff history here are the commands I used to add these files: git lfs track "*.jar" git lfs track "*.zip" git lfs track "*.7z" git lfs track "*.gz" git lfs track "*.rar" git lfs track "*.tar" git lfs track "*.iso" git lfs track "*.png" git lfs track "*.jpg" git lfs track "*.jpeg" git lfs track "*.gif" git lfs track "*.bmp" git lfs track "*.tiff" git lfs track "*.svg" git lfs track "*.webp" git lfs track "*.mp3" git lfs track "*.wav" git lfs track "*.ogg" git lfs track "*.flac" git lfs track "*.aac" git lfs track "*.m4a" git lfs track "*.wma" git lfs track "*.mp4" git lfs track "*.mkv" git lfs track "*.avi" git lfs track "*.mov" git lfs track "*.webm" git lfs track "*.flv" git lfs track "*.wmv" git lfs track "*.psd" git lfs track "*.ai" git lfs track "*.pdf" git lfs track "*.mca" git lfs track "*.dat" git lfs track "*.dat_old"
61 lines
2.3 KiB
TOML
61 lines
2.3 KiB
TOML
|
|
[Camera]
|
|
#Default focal range of the camera (without a lens attached).
|
|
#Allowed range: 10-300
|
|
#Default: 18-55
|
|
DefaultFocalRange = "18-55"
|
|
#Can attack while looking through Viewfinder.
|
|
#Default: true
|
|
ViewfinderAttacking = true
|
|
#Right-clicking Camera in GUI will open Camera attachments screen. Only in player inventory.
|
|
#Default: true
|
|
RightClickAttachmentsScreen = true
|
|
#Right-clicking Camera in GUI with attachment item will insert/swap it.
|
|
#Default: true
|
|
RightClickHotswap = true
|
|
|
|
[Lightroom]
|
|
#Time in ticks to print black and white photograph. Default: 80
|
|
#Range: > 1
|
|
BlackAndWhitePrintTime = 80
|
|
#Time in ticks to print color photograph. Default: 200
|
|
#Range: > 1
|
|
ColorPrintTime = 200
|
|
#Time in ticks to print one channel of a chromatic photograph. Default: 120
|
|
#Range: > 1
|
|
ChromaticPrintTime = 120
|
|
#Amount of experience awarded per printed black and white Photograph. Set to 0 to disable. Default: 2
|
|
#Range: 0 ~ 99
|
|
ExperiencePerPrintBW = 2
|
|
#Amount of experience awarded per printed color Photograph. Set to 0 to disable. Default: 4
|
|
#Range: 0 ~ 99
|
|
ExperiencePerPrintColor = 4
|
|
#Amount of experience awarded per printed chromatic Photograph (when all three channels have been printed). Set to 0 to disable. Default: 5
|
|
#Range: 0 ~ 99
|
|
ExperiencePerPrintChromatic = 5
|
|
|
|
[Photographs]
|
|
#How many photographs can be stacked in Stacked Photographs item. Default: 16.
|
|
#Larger numbers may cause errors. Use at your own risk.
|
|
#Range: 2 ~ 64
|
|
StackedPhotographsMaxSize = 16
|
|
|
|
[Misc]
|
|
#Film rolls can be renamed by using the item. Default: true
|
|
FilmRollRenaming = true
|
|
#Generate items in loot chests. Default: true
|
|
AddItemsToLootChests = true
|
|
|
|
[Integration]
|
|
|
|
[Integration.Create]
|
|
|
|
[Integration.Create.SequencedSpoutFilmDeveloping]
|
|
#Film can be developed with create Spout Filling. Default: true
|
|
Enabled = true
|
|
#Fluid spouting sequence required to develop color film.
|
|
ColorFilmSequence = ["{FluidName:\"create:potion\",Amount:250,Tag:{Potion:\"minecraft:awkward\"}}", "{FluidName:\"create:potion\",Amount:250,Tag:{Potion:\"minecraft:thick\"}}", "{FluidName:\"create:potion\",Amount:250,Tag:{Potion:\"minecraft:mundane\"}}"]
|
|
#Fluid spouting sequence required to develop black and white film.
|
|
BlackAndWhiteFilmSequence = ["{FluidName:\"minecraft:water\",Amount:250}"]
|
|
|