├── .gitignore ├── CytooxienDetectedMods.md ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── src └── main │ ├── java │ └── me │ │ └── wolfii │ │ └── moddetectionpreventer │ │ ├── client │ │ └── ModDetectionPreventerClient.java │ │ ├── mixin │ │ ├── AbstractSignEditScreenMixin.java │ │ ├── AnvilEditScreenMixin.java │ │ └── AnvilScreenHandlerMixin.java │ │ └── text │ │ ├── CombinedFilter.java │ │ ├── KeybindFilter.java │ │ └── TranslationFilter.java │ └── resources │ ├── assets │ └── moddetectionpreventer │ │ └── icon.png │ ├── data │ └── vanillaTranslationKeys.gzip │ ├── fabric.mod.json │ └── moddetectionpreventer.mixins.json └── testWorld.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/.gitignore -------------------------------------------------------------------------------- /CytooxienDetectedMods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/CytooxienDetectedMods.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/me/wolfii/moddetectionpreventer/client/ModDetectionPreventerClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/java/me/wolfii/moddetectionpreventer/client/ModDetectionPreventerClient.java -------------------------------------------------------------------------------- /src/main/java/me/wolfii/moddetectionpreventer/mixin/AbstractSignEditScreenMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/java/me/wolfii/moddetectionpreventer/mixin/AbstractSignEditScreenMixin.java -------------------------------------------------------------------------------- /src/main/java/me/wolfii/moddetectionpreventer/mixin/AnvilEditScreenMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/java/me/wolfii/moddetectionpreventer/mixin/AnvilEditScreenMixin.java -------------------------------------------------------------------------------- /src/main/java/me/wolfii/moddetectionpreventer/mixin/AnvilScreenHandlerMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/java/me/wolfii/moddetectionpreventer/mixin/AnvilScreenHandlerMixin.java -------------------------------------------------------------------------------- /src/main/java/me/wolfii/moddetectionpreventer/text/CombinedFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/java/me/wolfii/moddetectionpreventer/text/CombinedFilter.java -------------------------------------------------------------------------------- /src/main/java/me/wolfii/moddetectionpreventer/text/KeybindFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/java/me/wolfii/moddetectionpreventer/text/KeybindFilter.java -------------------------------------------------------------------------------- /src/main/java/me/wolfii/moddetectionpreventer/text/TranslationFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/java/me/wolfii/moddetectionpreventer/text/TranslationFilter.java -------------------------------------------------------------------------------- /src/main/resources/assets/moddetectionpreventer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/resources/assets/moddetectionpreventer/icon.png -------------------------------------------------------------------------------- /src/main/resources/data/vanillaTranslationKeys.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/resources/data/vanillaTranslationKeys.gzip -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/moddetectionpreventer.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/src/main/resources/moddetectionpreventer.mixins.json -------------------------------------------------------------------------------- /testWorld.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustAlittleWolf/ModDetectionPreventer/HEAD/testWorld.zip --------------------------------------------------------------------------------