Skip to content

Commit

Permalink
hide a few FTB buttons by default
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsPilgaard committed Nov 11, 2024
1 parent c653572 commit ae87e57
Showing 1 changed file with 85 additions and 1 deletion.
86 changes: 85 additions & 1 deletion defaultconfigs/ftblibrary/ftblibrary-client.snbt
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
}
}

0 comments on commit ae87e57

Please sign in to comment.