From ee81e25e597c87d7e4be73d07ac1461d307dd27a Mon Sep 17 00:00:00 2001 From: copygirl Date: Tue, 16 Aug 2022 22:17:11 +0200 Subject: [PATCH] Clear banned items from Backpacked backpack --- defaultconfigs/backpacked-server.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 defaultconfigs/backpacked-server.toml diff --git a/defaultconfigs/backpacked-server.toml b/defaultconfigs/backpacked-server.toml new file mode 100644 index 0000000..dcb4312 --- /dev/null +++ b/defaultconfigs/backpacked-server.toml @@ -0,0 +1,24 @@ + +#Common configuration settings +[common] + #A list of items that are not allowed inside a backpack. Note: It is recommended to ban items that have an inventory as this will create large NBT data and potentially crash the server! + bannedItems = [] + #If enabled, prevents backpacks from being customised. This will remove the customise button from the backpack inventory + disableCustomisation = false + #Allows every player to use any backpack cosmetic variant without needing to complete the challenges. Side note, any progress to a challenge will not be tracked while enabled. + unlockAllBackpacks = false + #Stops players from removing the backpack if it's not empty. This prevents players from carrying multiple backpacks. + lockBackpackIntoSlot = true + #When breaking a shelf, the placed backpack will also drops it's items into the world. This prevents players from carrying multiple backpacks + dropContentsFromShelf = true + #When picking up a backpack (with items inside) off the ground, the item will automatically equip. Having this enabled may not be ideal for multiplayer servers. + autoEquipBackpackOnPickup = false + #If enabled, allows players to access the backpack of another player by interacting with the visible backpack on their back. + pickpocketBackpacks = true + #The maximum reach distance of a player to interact with another player's backpack. + #Range: 0.0 ~ 4.0 + pickpocketDistance = 1.5 + #The maximum angle at which another player's backpack can be accessed + #Range: 0.0 ~ 90.0 + pickpocketMaxRangeAngle = 80.0 +