blob: f4b2c65d3f85320b13a14c86f47237da7828f81c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package shcm.shsupercm.fabric.citresewn.config;
import net.minecraft.util.Identifier;
import shcm.shsupercm.fabric.citresewn.mixin.broken_paths.*;
/**
* Broken paths are resourcepack file paths that do not follow {@link Identifier}'s specifications.<br>
* When enabled in config, CIT Resewn will forcibly allow broken paths to load.<br>
* If not enabled, broken paths has no effect on the game.
* @see CITResewnConfig#broken_paths
* @see CITResewnMixinConfiguration#broken_paths
* @see ReloadableResourceManagerImplMixin
* @see IdentifierMixin
* @see AbstractFileResourcePackMixin
*/
public class BrokenPaths {
/**
* When enabled, {@link Identifier}s will not check for their path's validity.
* @see ReloadableResourceManagerImplMixin
* @see IdentifierMixin
*/
public static boolean processingBrokenPaths = false;
}
|