@@ -14,23 +14,23 @@ public class MixinPlugin implements IMixinConfigPlugin {
14
14
public static final String METEOR_LOGPREFIX_MIXIN = "[Meteor+ Mixins]" ;
15
15
16
16
private static final String mixinPackageMeteorPlus = "nekiplay.meteorplus.mixin" ;
17
- private static final String mixinPackageBozePlus = "nekiplay.bozeplus.mixin" ;
17
+
18
18
19
19
public static boolean isMeteorClient = false ;
20
20
public static boolean isMeteorRejects = false ; // Meteor Client Addon
21
21
public static boolean isNumbyHack = false ; // Meteor Client Addon
22
22
public static boolean isZewo2 = false ; // Meteor Client Addon
23
23
24
- public static boolean isBozeAPI = false ;
25
- public static boolean isFutureClient = false ;
24
+ public static boolean isBozeAPI = false ; // Client API
25
+ public static boolean isFutureClient = false ; // Other cheat client
26
26
27
- public static boolean isBaritonePresent = false ;
28
- public static boolean isJourneyMapPresent = false ;
29
- public static boolean isXaeroWorldMapresent = false ;
30
- public static boolean isXaeroMiniMapresent = false ;
31
- public static boolean isXaeroPlusMapresent = false ;
32
- public static boolean isLitematicaMapresent = false ;
33
- public static boolean isWhereIsIt = false ;
27
+ public static boolean isBaritonePresent = false ; // Baritone for auto walking
28
+ public static boolean isJourneyMapPresent = false ; // Currently not used
29
+ public static boolean isXaeroWorldMapresent = false ; // Extension for map and baritone
30
+ public static boolean isXaeroMiniMapresent = false ; // Extension for map and baritone
31
+ public static boolean isXaeroPlusMapresent = false ; // other extension for map and baritone
32
+ public static boolean isLitematicaMapresent = false ; // Detect litematica mod
33
+ public static boolean isWhereIsIt = false ; // Utility for ChestTracker for render 3d text
34
34
35
35
@ Override
36
36
public void onLoad (String mixinPackage ) {
@@ -60,7 +60,7 @@ public String getRefMapperConfig() {
60
60
61
61
@ Override
62
62
public boolean shouldApplyMixin (String targetClassName , String mixinClassName ) {
63
- if (!mixinClassName .startsWith (mixinPackageMeteorPlus ) && ! mixinClassName . startsWith ( mixinPackageBozePlus ) ) {
63
+ if (!mixinClassName .startsWith (mixinPackageMeteorPlus )) {
64
64
throw new RuntimeException (METEOR_LOGPREFIX_MIXIN + " " + mixinClassName + " is not in the mixin package" );
65
65
}
66
66
else if (mixinClassName .startsWith (mixinPackageMeteorPlus + ".meteorclient" )) {
0 commit comments