@@ -44,33 +44,11 @@ messages:
4444# setting this to "false" will improve command registration performance.
4545create-dispatcher-json : false
4646
47- # Use latest version (default: false)
48- # If "true", the CommandAPI will use the latest available NMS implementation
49- # when the CommandAPI is used. This avoids all checks to see if the latest NMS
50- # implementation is actually compatible with the current Minecraft version.
51- use-latest-nms-version : false
52-
53- # Be lenient with version checks when loading for new minor Minecraft versions (default: false)
54- # If "true", the CommandAPI loads NMS implementations for potentially unsupported Minecraft versions.
55- # For example, this setting may allow updating from 1.21.1 to 1.21.2 as only the minor version is changing
56- # but will not allow an update from 1.21.2 to 1.22.
57- # Keep in mind that implementations may vary and actually updating the CommandAPI might be necessary.
58- be-lenient-for-minor-versions : false
59-
60- # Hook into Paper's ServerResourcesReloadedEvent (default: false)
61- # If "true", and the CommandAPI detects it is running on a Paper server, it will
62- # hook into Paper's ServerResourcesReloadedEvent to detect when /minecraft:reload is run.
63- # This allows the CommandAPI to automatically call its custom datapack-reloading
64- # function which allows CommandAPI commands to be used in datapacks.
65- # If you set this to false, CommandAPI commands may not work inside datapacks after
66- # reloading datapacks.
67- hook-paper-reload : false
68-
69- # Skips the initial datapack reload when the server loads (default: true)
70- # If "true", the CommandAPI will not reload datapacks when the server has finished
71- # loading. Datapacks will still be reloaded if performed manually when "hook-paper-reload"
72- # is set to "true" and /minecraft:reload is run.
73- skip-initial-datapack-reload : true
47+ # Fallback to latest version (default: true)
48+ # If "true", the CommandAPI will fall back to the latest available NMS
49+ # implementation when the CommandAPI is used and no implementation for the
50+ # current Minecraft version was found.
51+ fallback-to-latest-nms : true
7452
7553# Plugins to convert (default: [])
7654# Controls the list of plugins to process for command conversion.
@@ -114,24 +92,17 @@ messages:
11492# setting this to "false" will improve command registration performance.
11593create-dispatcher-json : false
11694
117- # Use latest version (default: false)
118- # If "true", the CommandAPI will use the latest available NMS implementation
119- # when the CommandAPI is used. This avoids all checks to see if the latest NMS
120- # implementation is actually compatible with the current Minecraft version.
121- use-latest-nms-version : false
122-
123- # Be lenient with version checks when loading for new minor Minecraft versions (default: false)
124- # If "true", the CommandAPI loads NMS implementations for potentially unsupported Minecraft versions.
125- # For example, this setting may allow updating from 1.21.1 to 1.21.2 as only the minor version is changing
126- # but will not allow an update from 1.21.2 to 1.22.
127- # Keep in mind that implementations may vary and actually updating the CommandAPI might be necessary.
128- be-lenient-for-minor-versions : false
95+ # Fallback to latest version (default: false)
96+ # If "true", the CommandAPI will fall back to the latest available NMS
97+ # implementation when the CommandAPI is used and no implementation for the
98+ # current Minecraft version was found.
99+ fallback-to-latest-nms : false
129100
130- # Skips the initial datapack reload when the server loads (default: false )
101+ # Skips the initial datapack reload when the server loads (default: true )
131102# If "true", the CommandAPI will not reload datapacks when the server has finished
132103# loading. Datapacks will still be reloaded if performed manually when "hook-paper-reload"
133104# is set to "true" and /minecraft:reload is run.
134- skip-initial-datapack-reload : false
105+ skip-initial-datapack-reload : true
135106
136107# Plugins to convert (default: [])
137108# Controls the list of plugins to process for command conversion.
0 commit comments