-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c653572
commit ae87e57
Showing
1 changed file
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,88 @@ | ||
# Default config file that will be copied to local\ftblibrary-client.snbt if it doesn't exist! | ||
# Just copy any values you wish to override in here! | ||
|
||
{ } | ||
{ | ||
colorselector: { | ||
# Colors recently selected in the color selector | ||
# Default: [] | ||
recents: [I; ] | ||
} | ||
sidebar: { | ||
buttons: { | ||
"ftbteams:my_team": { | ||
enabled: true | ||
x: 0 | ||
y: 1 | ||
} | ||
"ftbquests:quests": { | ||
enabled: true | ||
x: 1 | ||
y: 1 | ||
} | ||
"ftbchunks:chunks": { | ||
enabled: true | ||
x: 2 | ||
y: 1 | ||
} | ||
"ftblibrary:toggle/night": { | ||
enabled: false | ||
x: 2 | ||
y: 0 | ||
} | ||
"ftbessentials:trash_can": { | ||
enabled: false | ||
x: 0 | ||
y: 2 | ||
} | ||
"ftblibrary:toggle/gamemode": { | ||
enabled: true | ||
x: 0 | ||
y: 0 | ||
} | ||
"ftbchunks:claim_chunks": { | ||
enabled: true | ||
x: 3 | ||
y: 1 | ||
} | ||
"ftblibrary:config": { | ||
enabled: false | ||
x: 1 | ||
y: 2 | ||
} | ||
"ftblibrary:toggle/day": { | ||
enabled: false | ||
x: 1 | ||
y: 0 | ||
} | ||
"ftblibrary:toggle/rain": { | ||
enabled: false | ||
x: 3 | ||
y: 0 | ||
} | ||
} | ||
|
||
# Enable the sidebar | ||
# Default: true | ||
enabled: false | ||
|
||
# Position of the sidebar | ||
# Default: "top_left" | ||
# Valid values: "top_left", "top_right", "bottom_left", "bottom_right" | ||
position: "top_left" | ||
} | ||
tooltips: { | ||
# Add the name of the mod that fluids belong to in the fluid selection GUI. | ||
# Default: true | ||
fluid_modname: true | ||
|
||
# Add the name of the mod that images belong to in the image selection GUI. | ||
# Default: true | ||
image_modname: true | ||
|
||
# Add the name of the mod that items belong to in the item selection GUI. | ||
# Note that several common mods also do this (modnametooltip,WTHIT,EMI...) so this is false by default | ||
# Default: false | ||
item_modname: false | ||
} | ||
} | ||
|