Tiny client and server pack for daxe's community
modrinth.com/project/daxe
1version: 4
2# Whether to use the server-side configuration.
3use_server: false
4sitting:
5 # Controls sitting behaviour. Possible values: nothing, discard (if no block underneath sitting player), gravity.
6 behaviour: "gravity"
7 # Places seat in the center of the block
8 should_center: true
9on_use:
10 # Allows to start sitting on specific blocks by interacting with them.
11 sitting: true
12 # Allows to start riding other players by interaction with them.
13 riding: true
14 # The maximum distance to a target to interact.
15 range: 1
16 # Prevents players from sitting in places where they would suffocate.
17 check_suffocation: true
18 # Activate only when interacting with an empty main hand.
19 require_empty_main_hand: true
20 # List of blocks or block types (e.g., "oak_log", "#logs") that are available to sit on by interacting with them.
21 blocks:
22 - "#minecraft:slabs"
23 - "#minecraft:stairs"
24 - "#minecraft:logs"
25 - "minecraft:dried_ghast"
26on_sneak:
27 # Allows to start sitting by double sneaking while looking down.
28 sitting: true
29 # Allows to start crawling by double sneaking near a one-block gap.
30 crawling: true
31 # The minimum angle must be looking down (in degrees) with double sneak.
32 min_pitch: 70.0
33 # The window between sneaks to sit down (in milliseconds).
34 delay: 500
35commands:
36 # Whether to register /fsit command. Requires restart
37 root: true
38 # Whether to register /sit command. Requires restart
39 sit: true
40 # Whether to register /crawl command. Requires restart
41 crawl: true